function topmenubehavior_mouseover(currentObject, rightImgID)
{
	currentObject.style.background='url(/FASImages/topmenu_selected_bg.gif) repeat top';
	currentObject.style.cursor ='hand';
	var rightImage = document.getElementById(rightImgID);
	if(rightImage)
	    rightImage.src = '/FASImages/topmenu_right_selected.gif';
}
function topmenubehavior_mouseout(currentObject, rightImgID)
{
	currentObject.style.background='url(/FASImages/topmenu_bg.gif) repeat top';
	var rightImage = document.getElementById(rightImgID);
	if(rightImage)
	    rightImage.src = '/FASImages/topmenu_right.gif';
}
function topmenubehavior_click(linkUrl)
{
	document.location.href = linkUrl;
}
function leftmenubehaviorone_mouseover(currentObject)
{
	currentObject.style.background='#83ab54';
	currentObject.style.cursor ='hand';
}
function leftmenubehaviorone_mouseout(currentObject)
{
	currentObject.style.background='#ebf1e3';
}
function leftmenubehaviorone_onclick(linkUrl)
{
	document.location.href = linkUrl;
}

//
// *** Rightmenu ******************************************
//
function rightmenubehavioritem_mouseout(currentObject)
{
	currentObject.style.background='#ebf1e3';
	currentObject.style.cursor = 'hand';
}
function rightmenubehavioritem_mouseover(currentObject)
{
	currentObject.style.background='#c5cabe';
	currentObject.style.cursor = 'hand';
}
function rightmenubehavioritem_onclick(linkUrl)
{
	document.location.href = linkUrl;
}
