//Картинка 1 с классом .img1
$('.img1').click(function(event){
event.preventDefault();
$(this).hide(2000).show(2000);
});
//Картинка 2 с классом .img2
$('.img2').click(function(event){
event.preventDefault();
$('.img1').stop(true,true);
$(this).hide(2000).show(2000);
});