// JavaScript Document
var exp;
menus_array = new Array ('ddFederacion', 'ddComofederarse', 'ddHandicap', 'ddInfofederativa', 'ddNoticias', 'ddTorneos', 'ddClubes', 'ddReglamento', 'ddLinks');

function showHideSwitch(theid) {
    var ele;
    var estado;

   if(document.getElementById)
   {    
   ele=document.getElementById(theid);
   if(ele)
   {
   
        estado = ele.className;
       colapseMenu();
       
       if(estado=='showSwitch'){
            document.getElementById(theid).className='hideSwitch';
            document.cookie = "";
            exp="";
        }else{
            document.getElementById(theid).className='showSwitch';
            document.cookie = "idname=" + theid;
            exp = theid;
         }
       }
   }
}

function colapseMenu()
{
     if(document.getElementById) {
        switch_id=document.getElementById(exp);
        if (switch_id) switch_id.className='hideSwitch';
    }   
}
function resetMenu () { // read cookies and set menus to last visited state
   var id;
   if (document.getElementById) {
    if(document.cookie.match("idname") != null){
        id = document.cookie.match("idname=(\\S*);")
        if(id)
            if(id.length>1) showHideSwitch(id[1]);}}
}