/* ---------------------------------------------------- */
/* JQuery												*/
/* ---------------------------------------------------- */
$(document).ready(function() 
{
	
	/*############################################################################
	Preload the large background images
	############################################################################ */
	$.preloadImages = function() { for(var i = 0; i<arguments.length; i++) { jQuery("<img>").attr("src", arguments[i]); } }
	$.preloadImages("images/ball_valve01.jpg", "images/ball_valve02.jpg", "images/ball_valve03.jpg", "images/ball_valve04.jpg",
			"images/background_contact.jpg", "images/background_downloads.jpg", "images/background_industries.jpg", 
			"images/background_products.jpg", "images/background_services.jpg" );
	
	
	/* make the image area visible - and then fade it in */
	$("#image_rotate").css("visibility","visible");
	$("#image_rotate").fadeIn(3000);
	
	/* Fade through the images */
	$('#image_rotate').innerfade({ 
		speed: 2000, 
		timeout: 4000, 
		type: 'sequence', 
		containerheight: '395px'
	});

	
});
