jQuery(document).ready(function() {

  $("li:has(ul)").hover(function(){
    $(this).css("color", "green");
  }, function(){
    $(this).css("color", "#333333");
  });
/*
  $("li:has(ul)").toggle(function(){
    $(this).find("li").fadeOut('slow');
  },function(){
    $(this).find("li").fadeIn('slow');
  });
*/
});
