$(document).ready(function(){
	$("div.selezione a").each(function (i) {
		$(this).click(function() {
			elem = this.href;
			$('#switch').fadeOut("normal", function() {
				$('#switch').attr('src', elem);
				$('#switch').load(function(){
					$('#switch').fadeIn("slow"); 
				});
			});
			
			return false;
		});
  	});
});
