//*********************
// Splash Constructor *
//*********************
function Splash()
{	
	// get id's
	this.splash		= document.getElementById('splash');
	
	// position splash
	this.position();
}

//***************************
// Function position splash *
//***************************
Splash.prototype.position = function()
{	
	var marginTop = parseInt(this.splash.offsetHeight / 2);
	this.splash.style.marginTop = '-' + marginTop + 'px';
}