$(document).ready(function() { 

	$(".menu li a").mouseover(function(){
		$(this).removeClass().addClass("mousehover");
	}).mouseout(function(){
		$(this).removeClass();		
	});

	$(".menu li:last-child")
        .css({background:"none"})

	$("#highlights-products div.highlights-products-box:last-child").css({margin:"0px"})
	$("#highlights-products-row-two div.highlights-products-box:last-child").css({margin:"0px"})

});
