$(function(){
	// manual animation
	$('.hoverpanel:first').find('img').delay(750).fadeTo('slow', 0,function(){
		$(this).parent().parent().next().find('img').delay(1000).fadeTo('slow', 0, function(){
			$(this).parent().parent().next().find('img').delay(1000).fadeTo('slow', 0, function(){
				$(this).parent().parent().next().find('img').delay(1000).fadeTo('slow', 0).delay(400).fadeTo(1000,1);
				$(this).fadeTo(1200, 1);
			});
			$(this).fadeTo(1200, 1);
		});
		$(this).fadeTo(1200, 1);
	});
	
	$('.hoverpanel').hover(function(){
		//hover in
		$(this).find('img').stop().fadeTo('normal', 0);
	},function(){
		$(this).find('img').stop().fadeTo('normal', 1);
		//hover out
	})
	
	
	
	
});

