<!--

	var shift = 0; 
	var ltop = 5;
	var width = 730;
	var moveOnScroll = true;
	var scrollSpeed = 1000;
	var scrolled = 'document.body.scrollTop';

/* shield page from geezer browsers -- try to get them to upgrade */
	if (document.layers)
		 {top.location.href="http://www.mozilla.org";}
	if (document.all &&!document.getElementById) 
	{ //oops - MSIE ver 5
   		top.location.href="http://www.microsoft.com/windows/ie/";
   }
   
   

/* scrolling stuff to hold menu on screen */
function checkScrolled(){
   setTimeout('checkScrolled()', scrollSpeed);
}

/* begin JavaScript code for the dropdown menu system */
function show(element) {
/* Version for Opera*/
	var leftShift = 0;
	var aLeft = 0;

	if(navigator.userAgent.indexOf('Opera') != -1) {
		leftShift = (window.innerWidth - width) / 2;
		
		if(leftShift <= 0)
			leftShift = 10;
	}
	
	/* -- IExplorer version -- */

	else if(navigator.userAgent.indexOf('MSIE') != -1) {
		leftShift = (document.body.clientWidth - width) / 2;

		if(leftShift <= 0)
			leftShift = 10;
	}		

	/* Version for Firefox*/

	else {
		leftShift = (document.body.clientWidth - width) / 2;

		if(leftShift <= 0)
			leftShift = 10;
	}
	
	aLeft = leftShift + 154;

	document.getElementById(element).style.left=aLeft + "px";
	document.getElementById(element).style.visibility="visible";
}

function hide(elmnt) {
	document.getElementById(elmnt).style.visibility="hidden";
}

function menuInit() { 
/* Version for Opera*/
	var leftShift = 0;
	var aLeft = 0;

	if(navigator.userAgent.indexOf('Opera') != -1) {
		leftShift = (window.innerWidth - width) / 2;
		
		if(leftShift <= 0)
			leftShift = 10;
			
		aLeft = leftShift + 180;

	}
	
	/* -- IExplorer version -- */

	else if(navigator.userAgent.indexOf('MSIE') != -1) {
		leftShift = (document.body.clientWidth - width) / 2;

		if(leftShift <= 0)
			leftShift = 10;
			
		aLeft = leftShift + 180;
	}		

	/* Version for Firefox*/

	else {
		leftShift = (document.body.clientWidth - width) / 2;

		if(leftShift <= 0)
			leftShift = 10;
			
		aLeft = leftShift + 180;
	}
	
	document.getElementById('menu_zone').style.left=aLeft + "px";
}
-->
