     $('li', this).hover(
      function() { 
	  	$(this).addClass('hover'); 
	  	$('> a', this).addClass('hover'); 
	  },
      function() { 
	  	$(this).removeClass('hover'); 
	  	$('> a', this).removeClass('hover'); 
	  }
    );
