$(document).ready(function(){  
  	
    $("ul#nav").children("li").hover(function() { 
		if($(this).attr("class") != "select"){
			$(this).addClass("over");
			$(this).prepend("<div></div>");
			$(this).find("div").fadeIn(200);
		}
    }, function(){ 
		if($(this).attr("class") != "select"){	
			$(this).removeClass("over");
			$(this).find("div").fadeOut(100, function(){ $(this).remove(); });		
		}
    });   
  
});  


//IE image caching
try { document.execCommand('BackgroundImageCache', false, true); }
catch(e) {}