/*
MNF created for navigation methods
*/
function SetParentLI_Active(ID)
{
	var btn = document.getElementById(ID);
	if (btn != null)
	{
		var parentLi = btn.parentNode; 
		parentLi.className = "active";
	}
}

function cleanWMbox()
{
	ctlWM = document.getElementById('WMBox');
	if (ctlWM.value == "Enter your email address")
	{
		ctlWM.value = "";
	}
}

var _bg;
$(document).ready(function ()
{
	if ($.browser.msie)
	{
		$('#navigation > li > a').hover(
			function ()
			{
				_bg = $(this).parent().css('background-image');
				var hs = _bg.replace('_off.gif', '_over.gif');
				hs = hs.replace('_important.gif', '_over.gif');
				$(this).parent().css('background-image', hs);
			},
			function ()
			{
				$(this).parent().css('background-image', _bg);
			}
		);
	}
});
