<!--
	
	// HIDE BODY UNTIL LOAD...
		function insertStyleSheet(href) {
			var styleObject = document.createElement('link');styleObject.setAttribute('href', href);styleObject.setAttribute('type', 'text/css');styleObject.setAttribute('media', 'screen');styleObject.setAttribute('rel', 'stylesheet');var head = document.getElementsByTagName('head')[0];head.appendChild(styleObject);
		}
		insertStyleSheet('/script/js_true.css');

		
	//ROLL-OVER MENUS...		
		var the_menus = new Array('menu_oil','menu_screen');		
		var the_timeout;
		function switchMenu(obj)
		{
			clearTimeout(the_timeout);
			
			for(var count in the_menus)
			{
				if(obj != the_menus[count])
				{
					document.getElementById(the_menus[count]).style.display = 'none';
				}
			}
			if(document.getElementById(obj)) 
			{ document.getElementById(obj).style.display = 'inline'; }
		}
		function do_timeout()
		{
			clearTimeout(the_timeout);
			the_timeout = setTimeout("switchMenu();", 800);
		}

	//VERTICAL CONTENT ALIGNMENT
		function vertical_align(outerObj, innerObj, align_ratio)
		{
			if(document.getElementById(innerObj) && document.getElementById(outerObj))
			{
				var innerObj_xPos;
				var outerObj_H = document.getElementById(outerObj).offsetHeight;
				var innerObj_H = document.getElementById(innerObj).offsetHeight;
				
				innerObj_xPos = (outerObj_H-innerObj_H)/align_ratio;
				if(innerObj_xPos > 0)
					document.getElementById(innerObj).style.top = innerObj_xPos+"px";
			}
		}
		function re_position()
		{
			vertical_align('contain_all', 'content_container', 2);
		}
		window.onload = function() 
		{
			document.body.style.visibility = 'visible';
			re_position();
		}
		window.onresize = function()
		{
			re_position();
		}
		
-->