$(document).ready(function(){
	
	function fadeHeros() {
		$(".box1 img").animate({opacity: 1.0}, 400).fadeIn(1600);
		$(".box2 img").animate({opacity: 1.0}, 800).fadeIn(1600);
		$(".box3 img").animate({opacity: 1.0}, 1200).fadeIn(1600, function(){
			$(".box4 img, .box5 img, .box6 img").fadeIn(100);
		});
		$(".box1 img").animate({opacity: 1.0}, 4000).fadeOut(1600);
		$(".box2 img").animate({opacity: 1.0}, 4000).fadeOut(1600);
		$(".box3 img").animate({opacity: 1.0}, 4000).fadeOut(1600).animate({opacity: 1.0}, 4000, function(){
			fadeHeros();
		});
	};
	
	fadeHeros();
		
	$(".right a").fancybox({
		'zoomSpeedIn'	: 0,
		'zoomSpeedOut'	: 0
	});
 
});