//Drop Down Menu
sfHover = function() {
	var sfEls = document.getElementById("menu").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"), "");
		}
	}
}


//**********************************
//Load Functions
//**********************************
$(document).ready( function() {

	sfHover();
							
	//external link
	$("a.newwindow").click( function() {
		this.target = "_blank";
	});

	$("a.popup").click( function() {
		window.open( $(this).attr('href'), "popup", "width=860, height=670,menubar=no,location=no,scrollbars=yes" );
		return false;
	});
	
});

