$(document).ready(function(){ thumb(); }); function thumb(){ $('.photo-min img').click(function(){ var src=$(this).attr("src") $('.photo-max img').fadeOut({complete:function(){ $('.photo-max img').attr('src',src); $('.photo-max img').fadeIn(); }}); }) }