menu1=new Image(20,34);
menu1.src="obrazky/tlacitka/tl2_1.gif";
menu2=new Image(5,34);
menu2.src="obrazky/tlacitka/tl2_2.gif";
menu3=new Image(20,34);
menu3.src="obrazky/tlacitka/tl2_3.gif";


function but_on(id){
  document.getElementById('tl'+id+'_1').style.backgroundImage='url(./obrazky/tlacitka/tl2_1.gif)';
  document.getElementById('tl'+id+'_2').style.backgroundImage='url(./obrazky/tlacitka/tl2_2.gif)';
  document.getElementById('tl'+id+'_3').style.backgroundImage='url(./obrazky/tlacitka/tl2_3.gif)';
}
function but_off(id){
  document.getElementById('tl'+id+'_1').style.backgroundImage='url(./obrazky/tlacitka/tl1_1.gif)';
  document.getElementById('tl'+id+'_2').style.backgroundImage='url(./obrazky/tlacitka/tl1_2.gif)';
  document.getElementById('tl'+id+'_3').style.backgroundImage='url(./obrazky/tlacitka/tl1_3.gif)';
}
function kat_on(id){
//  if((document.getElementById('kat'+id).style.backgroundImage=='') || (document.getElementById('kat'+id).style.backgroundImage=='none')){
  var x=document.getElementById('kat'+id).className;
  if(x.indexOf("men_kat1") == -1){
    document.getElementById('kat'+id).style.backgroundImage='url(./obrazky/sipka.gif)';
  }
}
function kat_off(id){
//alert(document.getElementById('kat'+id).style.backgroundImage)
//  if(document.getElementById('kat'+id).style.backgroundImage!='url(./obrazky/sipka1.png)'){
  var x=document.getElementById('kat'+id).className;
  if(x.indexOf("men_kat1") == -1){
    document.getElementById('kat'+id).style.backgroundImage='none';
  }
}
