$(document).ready( function() {    $(".thumbnail img").click( function() {        var changeSrc = this.src;        $("#target").fadeOut(            "slow",            function() {                $(this).attr("src", changeSrc);                $(this).fadeIn();            }        );    });});