Fade Toggle


$("img").hide(); $("#controller").toggle(function(){ $("img").fadeIn("slow"); },function(){ $("img").fadeOut("slow"); });