jQuery.preloadImages = function()
{
	for(var i = 0; i<arguments.length; i++)
	{
		jQuery("<img>").attr("src", arguments[i]);
	}
}

$(document).ready(function() {
	$.preloadImages("images/banner.png");
	$.preloadImages("screenshots/0.jpg", "screenshots/1.jpg", "screenshots/2.jpg");

	var screenshot = 1;
	var screenText = ["Right a Wrong", "Plug and play video and music", "Everything you need - out of the box"];
	$(this).everyTime(5000, nextScreenshot, 0);
	//$(this).everyTime(25000, showDownloadNow, 1);

	function nextScreenshot() {
		$("#EeeScreen").hide();
		$("#EeeText").hide();
		$("#EeeScreen").html('<img style="z-index: 1; position:absolute; left: 241px; top: 39px;" alt="Screenshot of easypeasy" src="screenshots/'+ screenshot +'.jpg">').fadeIn();
		$("#EeeText").html(screenText[screenshot]).slideDown();
		screenshot++;
		if (screenshot == 3) {
			screenshot = 0;
		}
	};


});
