You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
643 B
JavaScript

DD_belatedPNG.fix('#mainMenu ul li a,#mainMenu ul li a span,#headerWrapper,#bottom,div.bg');
$(document).ready(function(){
$("#mainMenu ul li a:gt(0)").hover(function(){
$(this).css("background","url(/css/images/nav-3.png) no-repeat top left");
$(this).find("span").css({background:"url(/css/images/nav-4.png) no-repeat top right",color:"#fff"});
}, function(){
$(this).css({background:"url(/css/images/nav-5.png) no-repeat top left",color:"#545454"});
$(this).find("span").css({background:"url(/css/images/nav-6.png) no-repeat top right",color:"#545454"});
})
})