jQuery(document).ready(function() {
	jQuery('.cloud img').live('click',function() {
		var x = jQuery(this);
		x.parent().parent().stop().fadeOut(500, function() {x.remove();});
	});
});

