/* #############################################################################
    
		Embright Ltd
		Copyright (c) 2002-2005
		
		Ensures the top nav can be seen on smaller screens
		
   #############################################################################*/
	 

function CheckWin(){
	var currentH;
	
	if(window.innerHeight){
		currentH=parseInt(Math.round(window.innerHeight));
	}
	else{
		currentH=parseInt(Math.round(document.body.clientHeight));
	}
	
//	alert(currentH);

	if(currentH <620){
	//alert(currentH);
	 BringItDown();
	}
	else{
		PutItBack();
	}
}
function BringItDown(){
	theWin=document.getElementById('horizon').style;
	theWin.top="0";
	theWin=document.getElementById('container').style;
	theWin.top="10px";
}
function PutItBack(){
	theWin=document.getElementById('horizon').style;
	theWin.top="50%";
	theWin=document.getElementById('container').style;
	theWin.top="-300px";
}

