﻿// JScript 文件



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>350){
	    $(".img350").each(function(){
		    $(this).attr("src",$(this).attr("lang"));
	    });
    }
    if(t>950){
	    $(".img950").each(function(){
		    $(this).attr("src",$(this).attr("lang"));
	    });
    }
    if(t>1550){
	    $(".img1550").each(function(){
		    $(this).attr("src",$(this).attr("lang"));
	    });
    }
});


