$(document).ready(function() {
	
		var mapInit = false;
		
		$("#openCloseIdentifier").show();
		
		$("#openCloseWrap").click( function() {
			if ($("#openCloseIdentifier").is(":hidden")) 
			{		
				$("#slider").animate({ 	marginTop: "-235px"}, { easing: "easeInBack" , duration : 150} );
				$("#openCloseWrap a").html('&gt; info');
				$("#openCloseIdentifier").show();							
			} 
			else 
			{							
				if (!mapInit)
				{
					$('#bpgMap').jmap('init', {'mapType':'hybrid','mapCenter':[45.6434, 11.796], 'mapZoom':10});
		
					$('#bpgMap').jmap('AddMarker', {'pointLatLng': [45.6434, 11.796]}, function( marker, options){} );
										
					mapInit = true;
				}
				
				$("#slider").animate({ marginTop: "-30px" }, { easing: "easeOutBounce" , duration : 600});
				$("#openCloseWrap a").html('&lt; info');
				
				$("#openCloseIdentifier").hide();
			}
		});  
	});
