// menu_maker.js
// THIS IS THE FILE TO MODIFY IF YOU WISH TO
// CHANGE OR ADD TO THE MENUS ON THE SITE

function hideSubMenus(){
	// REMEMBER TO HIDE ALL SUBMENUS HERE:
	hide('WWASubMenu')
	hide('WWDSubMenu')
	hide('PortSubMenu')
	hide('MenuOffArea')
}
var menu = ""
// THIS IS THE MAIN FIRST-LEVEL MENU

menu+="<div id=\"MainSiteMenu\" style=\"position:absolute; top:50px; left:227px; width:550px; height:15px; z-index:10;\">\n";
menu+="<a href=\"wwa.html\" onmouseover=\"hideSubMenus(); show('WWASubMenu'); show('MenuOffArea')\"><img src=\"images/button_wwa_o.gif\" alt=\"WWA\" width=\"85\" height=\"15\" border=\"0\"><\/a>\n";
menu+="<a href=\"wwd.html\" onmouseover=\"hideSubMenus(); show('WWDSubMenu'); show('MenuOffArea')\"><img src=\"images/button_wwd_o.gif\" alt=\"WWD\" width=\"85\" height=\"15\" border=\"0\"><\/a>\n";
menu+="<a href=\"portfolio.html\" onmouseover=\"hideSubMenus(); show('PortSubMenu'); show('MenuOffArea')\"><img src=\"images/button_port_o.gif\" alt=\"Port\" width=\"74\" height=\"15\" border=\"0\"><\/a>\n";
menu+="<a href=\"contact.html\" onmouseover=\"hideSubMenus();\"><img src=\"images/button_contact_o.gif\" alt=\"Contact\" width=\"66\" height=\"15\" border=\"0\"><\/a>\n";
menu+="<\/div>\n";

// WWA SUB-MENU
menu+="<div id=\"WWASubMenu\" style=\"position:absolute; top:65px; left:227px; z-index:10; visibility:hidden;\">\n";
menu+="<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td>\n";
menu+="<a href=\"our_story.html\"  class=\"menutext\"><img src=\"images/drop_our_story.gif\" alt=\"\" width=\"100\" height=\"15\" border=\"0\"><\/a><br>\n";
menu+="<a href=\"our_team.html\" class=\"menutext\"><img src=\"images/drop_our_team.gif\" alt=\"\" width=\"100\" height=\"15\" border=\"0\"><\/a><br>\n";
menu+="<\/td><\/tr><\/table>\n";
menu+="<\/div>\n";

// WWD SUB-MENU
menu+="<div id=\"WWDSubMenu\" style=\"position:absolute; top:65px; left:316px; z-index:10; visibility:hidden;\">\n";
menu+="<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td>\n";
menu+="<a href=\"wwd_design.html\" class=\"menutext\"><img src=\"images/drop_wwd_design.gif\" alt=\"\" width=\"140\" height=\"15\" border=\"0\"><\/a><br>\n";
menu+="<a href=\"wwd_web.html\"  class=\"menutext\"><img src=\"images/drop_wwd_web.gif\" alt=\"\" width=\"140\" height=\"15\" border=\"0\"><\/a><br>\n";
menu+="<a href=\"wwd_marketing.html\" class=\"menutext\"><img src=\"images/drop_wwd_marketing.gif\" alt=\"\" width=\"140\" height=\"15\" border=\"0\"><\/a><br>\n";
menu+="<a href=\"wwd_publishing.html\"  class=\"menutext\"><img src=\"images/drop_wwd_publishing.gif\" alt=\"\" width=\"140\" height=\"15\" border=\"0\"><\/a><br>\n";
menu+="<a href=\"wwd_event.html\" class=\"menutext\"><img src=\"images/drop_wwd_event.gif\" alt=\"\" width=\"140\" height=\"15\" border=\"0\"><\/a><br>\n";
menu+="<a href=\"wwd_pr.html\" class=\"menutext\"><img src=\"images/drop_wwd_pr.gif\" alt=\"\" width=\"140\" height=\"15\" border=\"0\"><\/a><br>\n";
menu+="<\/td><\/tr><\/table>\n";
menu+="<\/div>\n";

// Portfolio SUB-MENU
menu+="<div id=\"PortSubMenu\" style=\"position:absolute; top:65px; left:405px; z-index:10; visibility:hidden;\">\n";
menu+="<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td>\n";
menu+="<a href=\"portfolio_design.html\" class=\"menutext\"><img src=\"images/drop_wwd_design.gif\" alt=\"\" width=\"140\" height=\"15\" border=\"0\"><\/a><br>\n";
menu+="<a href=\"portfolio_web.html\"  class=\"menutext\"><img src=\"images/drop_wwd_web.gif\" alt=\"\" width=\"140\" height=\"15\" border=\"0\"><\/a><br>\n";
menu+="<a href=\"portfolio_publishing.html\"  class=\"menutext\"><img src=\"images/drop_wwd_publishing.gif\" alt=\"\" width=\"140\" height=\"15\" border=\"0\"><\/a><br>\n";
menu+="<a href=\"portfolio_event.html\" class=\"menutext\"><img src=\"images/drop_wwd_event.gif\" alt=\"\" width=\"140\" height=\"15\" border=\"0\"><\/a><br>\n";
menu+="<\/td><\/tr><\/table>\n";
menu+="<\/div>\n";

menu+="<div id=\"MenuOffArea\" style=\"position:absolute; top:30px; left:200px; width:10px; height:10px; z-index:8; visibility:hidden;\" >\n";
menu+="<a href=\"#\" onmouseover=\"hideSubMenus();\"><img src=\"images/spacer.gif\" width=\"375\" height=\"170\" border=\"0\"></a>\n";
menu+="</div>\n";
document.write(menu)
