$(function(){    $("#thumbs a").click(function(){        $("#myImg img").before("<img src='"+$(this).attr("href")+"' alt=''>");        $("#myImg img:last").fadeOut("fast",function(){            $(this).remove()        });        return false;    })})
