<!--
menu_status = new Array(); 
function showHide(theid){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);

        if(menu_status[theid] != 'show') {
           switch_id.className = 'show';
           menu_status[theid] = 'show';
		   
        }else{
           switch_id.className = 'hide';
           menu_status[theid] = 'hide';
		   
		   
        }
    }
}
function Hide(theid){
    if (document.getElementById) {
    var hide_id = document.getElementById(theid);
           hide_id.className = 'hide';
           menu_status[theid] = 'hide';
    }
}
function Show(theid){
    if (document.getElementById) {
    var show_id = document.getElementById(theid);
           show_id.className = 'show';
           menu_status[theid] = 'show';
    }
}
document.write("<a class=menu1 onclick=showHide('mymenu1')>Wire Ropes</a>")
document.write("<div id=mymenu1 class=" + option1 + "> <a href=crane_ropes.html class=" + status1a + ">Crane Rope</a> <a href=elevator_ropes.html class=hide" +  ">Mission Statement</a> <a href=elevator_ropes.html class=" + status1c + ">Elevator Rope</a> <a href=engineering_ropes.html class=" + status1d + ">Engineering Rope</a> <a href=fishing_shipping_ropes.html class=" + status1b + ">Fishing & Shipping Rope</a> <a href=mining_ropes.html class=" + status1e + ">Mining Rope</a> <a href=structural_ropes.html class=" + status1f + ">Structural Rope</a>  </div>")
document.write("<a class=menu1 href=wire_ropes_slings.html>Wire Rope Slings</a>")
document.write("<a class=menu1 href=brake_lining.html>Brake / Lining</a>")

-->