// add hover support to the li's in IE
$(document).ready(function(){
	// if this is IE then use the basic suckerfish script JQuery edition
	if($.browser.msie) {
		$(".nav li")
		.css({ zIndex : 101 })
		.hover(function(){
		   $(this).addClass("sfhover");
		 },function(){
		   $(this).removeClass("sfhover");
		 });
	 }
});