/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function findObj(n) {
    var x;
    var ns6 = document.getElementById ? 1 : 0
    var ie = document.all ? 1 : 0
    var ns = document.layers ? 1 : 0
    if(ns6){
        x = document.getElementById(n)
    }
    if(ie){
        x = document.all[n]
    }
    if(ns){
        x = document[n]
    }
    return x;
}
function showHideLayers() {
    var i,p,v,obj,args=showHideLayers.arguments;
    for (i=0; i<(args.length-2); i+=3) if ((obj=findObj(args[i]))!=null) { v=args[i+2];
        if (obj.style) {
            obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v;
        }
        obj.visibility=v;
    }
}
timedlayer = setTimeout("", 1)
function timedrestore() {
    clearTimeout(timedlayer)
    timedlayer = setTimeout("showHideLayers('menu2_1','','hide','menu2_2','','hide','menu2_3','','hide','menu2_4','','hide','menu2_5','','hide','menu2_6','','hide','menu2_7','','hide')", 500)
}
function HideAll(){
    showHideLayers('menu2_1','','hide','menu2_2','','hide','menu2_3','','hide','menu2_4','','hide','menu2_5','','hide','menu2_6','','hide','menu2_7','','hide')
}
function stoptime() {
    clearTimeout(timedlayer)
}


