//PRODUCTOS
// LIST ALL SHOW/HIDE ELEMENT IDS HERE
var menus_array = new Array ('oficina_coruna', 'oficina_guitiriz', 'oficina_ribadeo', 'oficina_apontenova', 'oficina_bretona', 'oficina_lugo', 'oficina_chantada', 'oficina_escairon', 'oficina_abarrela', 'oficina_quiroga');
menus_status_array = new Array ();// remembers state of switches


function showHideSwitch (theid) {
  if (document.getElementById) {
    var switch_id = document.getElementById(theid);
	
	var oficina_coruna = document.getElementById('oficina_coruna');
	oficina_coruna.className = 'hideSwitch'; 
	menus_status_array[oficina_coruna] = 'hide';
	
	var oficina_guitiriz = document.getElementById('oficina_guitiriz');
	oficina_guitiriz.className = 'hideSwitch';
	menus_status_array[oficina_guitiriz] = 'hide';
	
	var oficina_ribadeo = document.getElementById('oficina_ribadeo');
	oficina_ribadeo.className = 'hideSwitch';
	menus_status_array[oficina_ribadeo] = 'hide';
	
	var oficina_apontenova = document.getElementById('oficina_apontenova');
	oficina_apontenova.className = 'hideSwitch';
	menus_status_array[oficina_apontenova] = 'hide';
	
	var oficina_bretona = document.getElementById('oficina_bretona');
	oficina_bretona.className = 'hideSwitch';
	menus_status_array[oficina_bretona] = 'hide';
	
	var oficina_lugo = document.getElementById('oficina_lugo');
	oficina_lugo.className = 'hideSwitch';
	menus_status_array[oficina_lugo] = 'hide';
	
	var oficina_chantada = document.getElementById('oficina_chantada');
	oficina_chantada.className = 'hideSwitch';
	menus_status_array[oficina_chantada] = 'hide';
	
	var oficina_escairon = document.getElementById('oficina_escairon');
	oficina_escairon.className = 'hideSwitch';
	menus_status_array[oficina_escairon] = 'hide';
	
		
	var oficina_abarrela = document.getElementById('oficina_abarrela');
	oficina_abarrela.className = 'hideSwitch';
	menus_status_array[oficina_abarrela] = 'hide';
	
	var oficina_quiroga = document.getElementById('oficina_quiroga');
	oficina_quiroga.className = 'hideSwitch';
	menus_status_array[oficina_quiroga] = 'hide';
	
		
	switch_id.className = 'showSwitch';
	menus_status_array[theid] = 'show';
  
  }
}


function showSwitch (theid) {
  if (document.getElementById) {
    var switch_id = document.getElementById(theid);
    if (menus_status_array[theid] != 'show') {
      switch_id.className = 'showSwitch';
	  menus_status_array[theid] = 'show';
    }
  }
}

function HideSwitch (theid) {
  if (document.getElementById) {
    var switch_id = document.getElementById(theid);
    
      switch_id.className = 'hideSwitch';
	  menus_status_array[theid] = 'hide';
   }
}

