$(document).ready(function(){
  $('#menu-holder > ul > li').each(function(i) {
    $(this).hover(
      function() {
	$('.star, .starright', this).show();
      }
      ,
      function() {
	$('.star, .starright', this).hide();
      }
    );
  });
});


