/**
 * This file requires jQuery 1.3.2
 * Make sure to import jQuery BEFORE this file
 */


var initPage = function() {
  alert('here');
  sfHover();
  var externals = $("a[href^='http:']");
  alert(externals.length);
}

var sfHover = function() {
	var sfEls = document.getElementById("mainmenu").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);




