/*
 * 
 *  延迟加载图片
 *
 */
 

function autoLoadImg() //显示图片
{
    $(".default").each(function(){
        $(this).attr("src",$(this).attr("lang"));
    });
}
var hasShow = false;
$(window).bind("scroll",function(){
    if(hasShow==true){
	    $(window).unbind("scroll");
	    return;
    }
    var t = $(document).scrollTop();
    if(t>100){ //拉动滚动条高度大于100时
	    $(".img100").each(function(){
		    $(this).attr("src",$(this).attr("lang"));
	    });
    }
}); 
