
/*
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);

*/


//--><!]]>
//Jump menu that opens a new window when a value is clicked
//http://javascript.internet.com/navigation/jump-menu.html
//Original:  Vladimir Geshanov 
//Web Site:  http://hotarea.com/
//code modified to handle multiple drop downs on same page.

function openDir(form,ddlName) { 
	
	var newIndex = form[ddlName].selectedIndex; 
		if (form[ddlName].selectedIndex > 0 )
		{
			cururl = form[ddlName].options[ newIndex ].value; 
			
			window.open(cururl,null,'height=600,width=800,resizable=yes'); 
		}
	 	
} 

//takes the value passed in href and sets the variable text to display that.
	function PassFlash(incomingVar){
		
		window.document.LM_video.SetVariable("testTxt",incomingVar);
	}
	//-->
