
var Loader = {};
			
Loader.hide = function(lay) 
{
	if (document.getElementById) 
	{
		document.getElementById(lay).style.display = "none";
	}
}

Loader.show = function(lay)
{
	if (document.getElementById) 
	{
		document.getElementById(lay).style.display = "block";
	}

	Loader.startTheShow();
}
			
//-- Load Imanges	
Loader.loadAnimation = function()
{
	if(document.images)
	{
		document['holdYourHorses'].src = "_images/loadingBoxes.gif";
	}
}

//-- Start it	
Loader.startTheShow = function()
{
    window.scrollTo(0,0);
	this.status = "Please wait while your file is being uploaded.";
	setTimeout("Loader.loadAnimation()",10);
}
