/*
 * questo file gestisce le transizioni visual/mappa
 */

if(!jQuery('#mappa').is(":visible")) jQuery('#mappa').animate({opacity: "0.0"}, 5);
var mapIsInizialized = false;

function toggleMap() {
	if(jQuery('#mappa').is(":visible")==true){
		if(document.getElementById("flash").style.display=="none")
			document.getElementById("flash").style.display="block";
		jQuery('#mappa').fadeOut(1500);
	} else { //GLC fadeIn manuale
		
		/*jQuery('#mappa').fadeIn(700);*/
		if(!mapIsInizialized){
			initialize();
			mapIsInizialized = true;
		}
		/*jQuery('#mappa').hide();
		jQuery('#mappa').animate({opacity: "0.0"}, 5);*/
		/*jQuery('#mappa').show();
		jQuery('#mappa').animate({opacity: "1.0"}, 500);*/
		jQuery('#mappa').css({'opacity':'0.0'});
		jQuery('#mappa').show();
		jQuery('#mappa').animate({opacity: "1.0"}, 1500, function(){ 
		    //remove the opacity in IE 
		    jQuery.each(jQuery.browser, function(i) { 
		        if(jQuery.browser.msie){ 
		        	jQuery('#mappa').css({opacity:''}); 
		        } 
		    }); 
		});
	}	
	

	
}
	