function go2url (id) {
if (id == '0') {self.location = 'http://prag-guide.cz/index.php'}
else {self.location = 'http://prag-guide.cz/index.php?id=' + id}
}

function change(id) {

  document.getElementById('a_'+id).style.color = 'white';  
  document.getElementById('li_'+id).style.background = 'url(\'../img/bg-menu-selected.png\') top left repeat-y';
  document.getElementById('li_'+id).style.cursor = 'pointer';
}

function change_back(id) {
  document.getElementById('a_'+id).style.color = '#ad3500';
  document.getElementById('li_'+id).style.background = 'none';
  document.getElementById('li_'+id).style.cursor = 'default';
}

