// JavaScript Document
<!--
function big(lyr)
{
	document.all[lyr].style.height='auto';
}
/* small() makes selected layer shorter (height property)*/
function small(lyr)
{
	document.all[lyr].style.height='15px';
}
/* start() makes all layers short to start with (height property)*/
function start()
{
	document.all.Menu1.style.height='15px';
	document.all.Menu2.style.height='15px';	
	document.all.Menu3.style.height='15px';	
	document.all.Menu4.style.height='15px';		
}
function m_over(id)
{
	document.getElementById(id).style.backgroundColor="#0175AE";
	document.getElementById(id).className="menu_sub2";
}
function m_out(id)
{
	document.getElementById(id).style.backgroundColor="#CCCCCC";
	document.getElementById(id).className="menu_sub";	
}
//-- !>