ok this is what I have right now in javascript:

$(document).ready(function(){

                $(document).pngFix();
        $("#picmenu").hide();
      $("#userimage").mouseover(function(){
 $("#picmenu").fadeIn("slow");});$("#userimage").mouseout(function(){
 $("#picmenu").fadeOut("slow");});
$("#picmenu").mouseover(function(){  $("#picmenu").fadeIn("fast");});
$("#picmenu").mouseout(function(){ $("#picmenu").fadeOut("slow");});
});

userimage is the image of the user. The picmenu is the menu I want to
fade it.



Reply via email to