function menu(id)
					{
				     if (id == 'uvod')
						{
							var text = "./pages/slovak/uvod.php";
						}
					 if(id == 'ubytovanie')
						{
							var text = "./pages/germany.php";
						}
					 if(id == 'cennik')
						{
							var text = "./pages/english.php";
						}
					 if(id == 'podujatia')
						{
							var text = "./pages/hungary.php";
						}
					 if(id == 'okolie')
						{
							var text = "./pages/polsky.php";
						}
					 if(id == 'fotogaleria')
						{
							var text = "./pages/rusky.php";
						}
					 if(id == 'kontakt')
						{
							var text = "./pages/rusky.php";
						}
			   		 if(id == 'rezervacia')
						{
							var text = "./pages/rusky.php";
						}
					 if(id == 'zlavy')
						{
							var text = "./pages/slovak.php";
						}
					if (text !== 0)
				     {
				        if (window.ActiveXObject)
				        {
				          httpRequest = new ActiveXObject("Microsoft.XMLHTTP");
				        }
				        else
				        {
				          httpRequest = new XMLHttpRequest();
				        }
				        httpRequest.open("GET", text, true);
				        httpRequest.onreadystatechange= function () {processRequest(); } ;
				        httpRequest.send(null);
				      }
				      else
				      {

				        document.getElementById("main").innerHTML = "";
				        
				      }
					}
					function processRequest()
					{
					  if (httpRequest.readyState == 4)
					  {
					    if(httpRequest.status == 200)
					    {
					      var mistoZobrazeni = document.getElementById("main");
					      mistoZobrazeni.innerHTML = httpRequest.responseText;
					    }
					    else
					    {
					        alert("Chyba pri nacitavani stanky"+ httpRequest.status +":"+ httpRequest.statusText);
					    }
					  }
					}
					
