var $locpath = 'http://maggiekeegangross.com/wp-content/themes/starkers-html5/images/';
$(function(){
$("nav ul li").hover(function(){
$(this).addClass("hover");
$('ul:first',this).css('visibility', 'visible');
}, function(){
$(this).removeClass("hover");
$('ul:first',this).css('visibility', 'hidden');
//$('.cats a[title*="Categories"]').css('background', 'url(images/nav_cats.png) 0 0 no-repeat');
});
//$("ul.buy li ul li:has(ul)").find("a:first").append(" &raquo; ");
$("li.cats").hover(function(){
$('.cats a[title*="Categories"]').css('background', 'url('+$locpath+'nav_cats.png) 0 -27px no-repeat');
}, function(){
$('.cats a[title*="Categories"]').css('background', 'url('+$locpath+'nav_cats.png) 0 0 no-repeat');
});
$("li.details").hover(function(){
$('.details a[title*="Details"]').css('background', 'url('+$locpath+'nav_details.png) 0 -27px no-repeat');
}, function(){
$('.details a[title*="Details"]').css('background', 'url('+$locpath+'nav_details.png) 0 0 no-repeat');
});
});
