// JavaScript Document
function mapaHover(id) {
  document.getElementById('mapaPredajci').style.backgroundPosition = "0px -"+(id*309)+"px";
}
function oznacMesto(id,i){
  for(j=1; j<=i; j++)
  {
    document.getElementById('predajca'+j).style.backgroundColor = "transparent";
    if(id == j)
    {
      document.getElementById('predajca'+j).style.backgroundColor = "#083D71";  
    } 
  }   
}  
function mapaServisHover(id) {
  document.getElementById('mapaServis').style.backgroundPosition = "0px -"+(id*309)+"px";
}
function oznacKraj(id,i){
  for(j=1; j<=i; j++)
  {
    document.getElementById('kraj'+j).style.backgroundColor = "transparent";
    if(id == j)
    {
      document.getElementById('kraj'+j).style.backgroundColor = "#083D71";  
    } 
  }  
}    
                                  
