// JavaScript Document


<!--//--><![CDATA[//><!--

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

//--><!]]>
//grab loc and drop into cookie
function getLoc(){
	dojo.require("dojo.cookie"); 
	dojo.registerModulePath("com.mvci.client.util","../../com/mvci/client/util");
	dojo.require("com.mvci.client.util.FormsUtils");		
	//com.mvci.client.util.FormsUtils.enforceSSL();
	var queryStringList = com.mvci.client.util.FormsUtils.getParamsArray();
	var loc = queryStringList["LOC"];
	if (loc && loc != 'undefined')
	{			
		dojo.cookie("loc", loc, { expires: 1 });	
	}
}
function leaveSSL()
{	
	var fullURL = parent.document.URL;
	if((fullURL.indexOf("information.shtml") == -1)&&(fullURL.indexOf("ppc") == -1))
	{
		if(fullURL.substr(0,6)=="https:"){
			document.location="http:"+fullURL.substr(6,fullURL.length);
		}
	}
}
leaveSSL();
