function fadeInImg_1(){
$('#img_1').fadeIn('slow');
}
$(document).scroll(function(){
if ($(this).scrollTop() >= 0 && $(this).scrollTop() < 1140){
fadeInImg_1();
}
});
$(function() {
$('div#fds img').each(function(i) {
$(this).delay((i++) * 500).fadeTo(1000, 1); })
});