var images = new Array();
var imageFiles = [
	"images/background.png",
	"images/backgrounds/background-1.png",
	"images/backgrounds/background-2.png",
	"images/backgrounds/background-3.png",
	"images/backgrounds/background-4.png",
	"images/backgrounds/background-5.png",
	"images/backgrounds/background-6.png",
	"images/backgrounds/background-7.png",
	"images/backgrounds/background-8.png"
];

for (var i = 0; i < imageFiles.length; i++) {
	images[i] = new Image;
	images[i].src = imageFiles[i];
}

$(document).ready(function() {
	$("#text1").hide();
	$("#text2").hide();
	$("#text3").hide();
});

$(window).load(function() {
	setTimeout('$("#text1").fadeIn("slow");', 1000);
	setTimeout('$("#text2").fadeIn("slow");', 2000);
	setTimeout('$("#text3").fadeIn("slow");', 3000);
});
