
$(window).bind("load", function() {
	var preload = ['/images/home/home_1.jpg', '/images/home/home_2.jpg', '/images/home/home_3.jpg', '/images/home/home_4.jpg', '/images/home/home_5.jpg', '/images/home/home_6.jpg'];              
	$(document.createElement("img")).bind("load", function() {
		if(preload[0]) this.src = preload.shift();
	}).trigger("load");            
}); 

$(function() {

	$("#home-images").css({ opacity: 0.0 });
	$("#home-images").html("<img src='/images/home/home_1.jpg' alt='' /><img src='/images/home/home_2.jpg' alt='' /><img src='/images/home/home_3.jpg' alt='' /><img src='/images/home/home_4.jpg' alt='' /><img src='/images/home/home_5.jpg' alt='' /><img src='/images/home/home_6.jpg' alt='' />");
	$("#home-images img:gt(0)").hide();
	$("#home-images").animate({ opacity: 1.0 }, 2000, "easein", function() {
		$(this+" img").show();
		$(this).innerfade({
			animationtype: "fade",
			speed: 1500,
			timeout: 4000,
			type: "sequence",
			containerheight: "370"
		});
	});

});
