

$(document).ready(function(){
$('#funcmenu li:eq(3)').css("border-top","1px solid #e7e7ef").css("margin-top","9px").css("padding-top","3px")
});

/*this is for fluid suckerfish menu*/
sfHover = function() {
	var sfEls = document.getElementById("fluidnav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" over";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" over\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

/*this will fix the msie padding left issue*/
$(document).ready(function(){
	if($.browser.msie){
		$('#fluidnav li ul li a').prepend("&nbsp;&nbsp;");
	}
	
});
