function load(link, div){
	$(function () {
		  var img = new Image();
		  $(img)
		    .load(function () { 
		      $(this).hide();
		     	 $(div)
		        .html('')
		        .append(this);
		      $(this).fadeIn('slow');
		    })
		    .error(function () {
		    })
		    .attr('src', link);
		});
}
