$(function(){ $(window).load(function () { $("#gallery .pic img").fadeIn('2000').css('display','block'); }); $("#gallery .thumbnail a img").click( function() { var changeSrc = this.src; var changeAlt = this.alt; $("#gallery a img").removeClass('select'); $(this).addClass('select'); $("#target").fadeOut("fast",function() { $(this).attr("src", changeSrc); $(this).attr("alt", changeAlt); $(this).fadeIn().css('display','block'); }); return false; }); });