// ***********************************************************************************
// ***********************************************************************************
// WHERE Map
// ***********************************************************************************
// ***********************************************************************************
	
$(document).ready( 
	function() {
		
		// --------------------------------------------------------
		// Effetti bottoni   
		// --------------------------------------------------------
		$('div#cLeftImg2 a').hover( 
			function() {
				$( this ).animate( {opacity: "0.8"}, 10 );
			},
			function() {
				$( this ).animate( {opacity: "1"}, 10 );
			});
			// End {"hover"}
		// --------------------------------------------------------
	
		
		// --------------------------------------------------------
		// Clich map   
		// --------------------------------------------------------
		$( "div#cLeftImg2 a" ).click( 
			function() {
				
				var myLoadLink = this.href;
				$('div#contactsBoard').append('<div id="loadingPage">...loading map...</div>');
				$('div#contactsBoard').load( myLoadLink, 
					function () {
						$('div#loadingPage').remove();
						$('div#contactsCloseMapLink').show();
							
						// Tasto "close" 
						$( "a#closeMap" ).click( 
							function () {		
								$('div#contactsBoard').empty().append('<div id="loadingPage">...loading form...</div>');
								location.href = 'index.php';
								return false;
							});
							// End {"click"} 
					});
					// End {"load"} 
				
				return false;
			});
			// End {"click"} 	
	});
	// End {"ready"}
	
// ***********************************************************************************
// ***********************************************************************************
		