$(window).bind("load", function() {

	var preload = ['images/1.jpg', 'images/2.jpg', 'images/3.jpg', 'images/amsterdam_text.jpg', 'images/hydro_text.jpg', 'images/reserve_text.jpg'];              
	$(document.createElement("img")).bind("load", function() {
		if(preload[0]) this.src = preload.shift();
	}).trigger("load");            

}); 


$(function() {
	
	$("#fade").innerfade({
		animationtype: 'fade',
		speed: 1000,
		timeout: 3000,
		type: 'sequence',
		containerheight: '600'
	});

	$("#hover img").hover(function(){
		var id = $(this).attr("id");
		$("#text").html("<img src='images/"+id+"_text.jpg' alt='' />");
	},function(){
		$("#text").html('<img src="images/text.jpg" alt="" />');
	});

});
