function getTextRestaurace(day){

     var url = '/ajax/restaurace.php?day='+day;
     if (url != 0)
     {
        if (window.ActiveXObject)
        {
          httpRequest = new ActiveXObject("Microsoft.XMLHTTP");
        }
        else
        {
          httpRequest = new XMLHttpRequest();
        }
        httpRequest.open("GET", url, true);
        httpRequest.onreadystatechange= function () {processRequest2(); } ;
        httpRequest.send(null);
      }
	el = document.getElementById('rpo');
        el.style.backgroundColor='white';
        el = document.getElementById('rut');
        el.style.backgroundColor='white';
        el = document.getElementById('rst');
        el.style.backgroundColor='white';
        el = document.getElementById('rct');
        el.style.backgroundColor='white';
        el = document.getElementById('rpa');
        el.style.backgroundColor='white';
        el = document.getElementById('rso');
        el.style.backgroundColor='white';
        el = document.getElementById('rne');
        el.style.backgroundColor='white';

        var elem = document.getElementById('r'+day);
        elem.style.backgroundColor='#FFD889';

}

function processRequest2()
{
  if (httpRequest.readyState == 4)
  {
    if(httpRequest.status == 200)
    {
        var data = httpRequest.responseText;
	zobraz2(data);
    }
    else
    {
        alert("Chyba pri nacitani stanky"+ httpRequest.status +":"+ httpRequest.statusText);
    }
  }
}

function zobraz2(text) {
        var el = document.getElementById("restaurace");
        el.innerHTML="<p>"+text+"</p>";
}












