function view(n)
{
	$('.box').css('display','none');
	$('.box'+n).css('display','block');
}
	
$(document).ready(function(){
	$('a.blank').attr('target','_blank');
	//alert($('map').attr('id'));
	$('map').attr('name', function(){return this.id;});
	
	/* esempio d'uso <a href="http://www.google.it" rel="510_430_yes" class="popup"> */
	$('a.popup').bind("click", function(e){		
		info=$(this).attr('rel').split('_');
		w=info[0];
		h=info[1];
		s=info[2];
		var l = Math.floor((screen.width-w)/2);
		var t = Math.floor((screen.height-h)/2);
		valori='width='+w+',height='+h+',top='+t+',left='+l+',scrollbars='+s+',toolbar=no,location=no,status=no,menubar=no';
		window.open($(this).attr('href'),'',valori);
		return false;
	});
	
	view(1);
	$('#flash_intro').flashembed({src: 'swf/intro.swf', version: [9, 0], w3c: true, bgcolor: 'transparent', wmode: 'transparent'});
	$('#flash_home').flashembed({src: 'swf/notesoro.swf', version: [9, 0], w3c: true, bgcolor: 'transparent', wmode: 'transparent'});
	/*$('#flash_home2').flashembed({src: 'swf/home2.swf', version: [9, 0], w3c: true, bgcolor: 'transparent', wmode: 'transparent'});*/
	$('#flash_multimedia').flashembed({src: 'swf/multimediavideo.swf', version: [9, 0], w3c: true, bgcolor: 'transparent', wmode: 'transparent'});
 });