$(function() { $("a.switch_simple").click(function(){ $(".info-box").fadeOut("fast", function() { $(this).fadeIn("fast").addClass("simple"); }); }); $("a.switch_thumb").click(function(){ $(".info-box").fadeOut("fast", function() { $(this).fadeIn("fast").removeClass("simple"); }); }); } ); $(window).load(function () { $("img.thumb").each(function() { if ($(this).width() == 1) { $(this).attr("src", "/images/no_cover.gif"); } }); });