function el( id )
{
	return document.getElementById(id);
}
function submenuOver( id )
{
	for( x=0;x<menubarTabs;x++ )
	{
		el( 'sub-menu-'+x ).className = 'hide';
		el( 'menu-'+x ).className = 'tab-close';
	}
	el( 'sub-menu-'+id ).className = 'show';
	el( 'menu-'+id ).className = 'tab-open';
}
function submenuOut( id )
{
}
