function changeMenu(nr)
{
	$("#menu > li").each(function(i)
	{
		$("#sub"+this.id).css('display','none');
		$(this).removeClass("selected");
		if(i==nr)
		{			
			$(this).addClass("selected");
			$("#sub"+this.id).css('display','block');			
		}
	});

}; 

function GoogleMapInitialize()
{ 
	var isMapa = document.getElementById("map_canvas");
	if(isMapa == null){
		return '';
	}
	else
	{
	    var map = new GMap2(document.getElementById("map_canvas"));
		var point = new GLatLng(50.069821,19.925972);
	    map.setCenter(point, 16); 
	    map.enableDragging();
	    map.addControl(new GSmallMapControl);
	    var mymarker = new GMarker(point);
	    
	    GEvent.addListener(mymarker, "click", function() {  
	    	mymarker.openInfoWindowHtml('<img src="../../../i-dentist-logo-white.png" alt="DENTIST - Klinika Stomatologiczna" />')});	
	    
	    map.addOverlay(mymarker);
	    
	    mymarker.openInfoWindowHtml('<img src="../../../i-dentist-logo-white.png" alt="DENTIST - Klinika Stomatologiczna" />');	  
	}
}

function onEveryAjax()
{


	

}



