
if(document.images){
  r_on = new Image(); r_on.src="templates/standard/img/page/roll_on.gif";
  r_off = new Image(); r_off.src="templates/standard/img/page/roll_off.gif";
}

//////////////////////////////////////////////////////////////////

function on(i){
  if(document.images){
    document.images[i].src = r_on.src;
  }
}

//////////////////////////////////////////////////////////////////

function off(i){
  if(document.images){
    document.images[i].src = r_off.src;
  }
}

//////////////////////////////////////////////////////////////////

function change_cat(){
  url = document.sc.subcat.options[document.sc.subcat.selectedIndex].value;
  window.location = 'http://'+location.host+'/'+url
  return false; 
}

//////////////////////////////////////////////////////////////////

function show_sub(id){
 obj = document.getElementById('sub'+id);
 if(obj) obj.style.display = (obj.style.display=="none") ? "block" : "none";
 
 return false;
}
