function sethover(x) {
	x.mouseover(function() {  
        $(this).addClass('hover');
      }); 
	x.mouseout(function() {
         $(this).removeClass('hover'); 
      }); 
}
$(document).bind("ready", function(){  
    sethover(  $('.HEADERCAT li.menu') ) ;
   
});
