I hope this helps:

<script >
  $(document).ready(function(){

    $("#menubar > *").mouseover(function () {
      $(this).fadeTo("slow", 0.33);
    });

        $("#menubar > *").mouseout(function () {
      $(this).fadeTo("slow", 1);
    });

  });
</script>

Reply via email to