var hc = (screen.height/2) - 355;

function hide(){
document.getElementById('layer1').style.visibility = 'hidden';
document.getElementById('splash').style.visibility = 'hidden';

}

function launch(){
	document.getElementById('splash').style.top = '-200px'
	
	var wc = (screen.width/2) -600 ;
	
	moveLogo()
	
	//document.getElementById('splash').style.left = wc+'px';
	setTimeout('hide()',8000)
	
}

function moveLogo(){
var y = parseInt(document.getElementById('splash').style.top)+15+'px'
	document.getElementById('splash').style.top = y;
	if(parseInt(document.getElementById('splash').style.top) < hc){
		setTimeout('moveLogo()',20)	
	}
}




