$(document).ready(function() { $("img[alt=hide]").hide(); $("a[title=hide]").toggle(function(event){ $("#sidebar2").fadeOut("slow"); $("#content").delay(650).animate({width: "90%"}); $("img[alt=hide]").fadeIn("slow"); } , function(){ $("#sidebar2").fadeIn("slow"); $("#content").width(defaultWidth); $("img[alt=hide]").fadeOut("slow"); }); });