// JavaScript Document
function page_init()
{			
	highlight_menu();		
}
window.onload = new Function("page_init();");

function highlight_menu()
{
	if (current_menu_item != 0)
	{
		document.getElementById("men" + current_menu_item).className = 'current_tab';
	}
}

//hide the messages in the status bar
function hidestatus(){
window.status=''
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus