$(document).ready(function(){

	function windowheight(){
		if(window.innerHeight){
			return window.innerHeight;
		}
		return document.documentElement.clientHeight;
	}
	
	$('.v img').css({'width':'450px','height':'678px'});
	$('.h img').css({'width':'910px','height':'604px'});
	$('.image').each(function(){
		$(this).attr({'rel':$(this).find('img').offset().top});
	});

	$(window).scroll(function () {
		//$('strong').html($(document).scrollTop());
		$('.image').each(function(){
			if($(document).scrollTop()+50+windowheight() >= parseInt($(this).attr('rel'))){
				$(this).find('img').attr({'src':$(this).find('img').attr('rel')});
			}
		});
	});

	$('.image').each(function(){
		if($(document).scrollTop()+50+windowheight() >= parseInt($(this).attr('rel'))){ $(this).find('img').attr({'src':$(this).find('img').attr('rel')}); }
	});

});