// JavaScript Document
var maxH = 20;
$(document).ready(function(){
	$(".fancy").fancybox({
		'titlePosition': 'over'
   });
	
	var numList = $("#menupag li").length; 
   	for (i=0; i<numList ; i++){ 
	   var maxHeight = $("#menupag li:eq("+i+")").height(); 
	   if(maxHeight > maxH) maxH = maxHeight;
  	} 
	$("#menupag li").css({ height: maxH});
	/*$("a.fancy_video").click(function() {
		$.fancybox({
				'padding'		: 0,
				'autoScale'		: false,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none',
				'title'			: this.title,
				'width'			: 680,
				'height'		: 495,
				'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'			: 'swf',
				'swf'			: {
					 'wmode'		: 'transparent',
					'allowfullscreen'	: 'true'
				}
			});
	
		return false;
	});*/
});

function cambiaTab(tab, i, old){
	$('#linguette li').removeClass('tab'+old+'-active');
	$(tab).addClass('tab'+i+'-active');
	$('.interno_tab').hide();
	$('#interno_tab_'+i).show();
	var mappa=$('#mappa').attr('id');
	if(mappa) {
		map.checkResize();
		map.setCenter(new GLatLng(lat,long));
	}
}

