var h, hideIt;
function show(n) {
for (var m = 0; m < menus; m ++) {
hide(m);
};
document.getElementById(n + "overlay").style.visibility = "";
for (var i = 0; i < items[n]; i ++) {
document.getElementById(n + "contents" + i).style.visibility = "";
};
};
function hide(n) {
if (hideIt == false) {
hideIt == true;
return;
};
if (document.getElementById(n + "overlay").style.visibility = "") return;
for (var i = 0; i < items[n]; i ++) {
document.getElementById(n + "contents" + i).style.visibility = "hidden";
};
document.getElementById(n + "overlay").style.visibility = "hidden";
};
function sethide(n) {
hideIt = true;
h = setTimeout("hide(" + n + ");", 50);
};
function highlight(n, i) {
hideIt = false;
i.style.background = "gray";
i.style.filter = "alpha(style=4,opacity=50)";
i.style.color = "aqua";
};
function dehighlight(n, i) {
i.style.background = "aqua";
i.style.filter = "alpha(style=4,opacity=50)";
i.style.color = "#333333";
sethide(n);
};
var menus = 0, items = new Array();
function makeMenu(title, x, y, w) {
var n = menus;
var numItems = (arguments.length - 4) / 2;
items[n] = numItems;
document.write("
");
for (var i = 0; i < numItems; i ++) {
document.write(" " + arguments[4 + i*2] + "
");
};
document.write(" " + title + "
");
menus ++;
};
makeMenu("About the company",70,130, 120,
"Who Are We", "http://www.rusteak.com/antique-furniture.htm",
"Contact Us", "http://www.rusteak.com/contact.htm");
makeMenu("Product",215, 130, 190,
"Shelving","http://www.rusteak.com/gallery/index.php?ct=shelving","Chairs","http://www.rusteak.com/gallery/index.php?ct=chairs","Cabinets","http://www.rusteak.com/gallery/index.php?ct=cabinets","Console tables","http://www.rusteak.com/gallery/index.php?ct=console+tables","Buffets & side cabinets","http://www.rusteak.com/gallery/index.php?ct=buffets+%26+side+cabinets","Sofas","http://www.rusteak.com/gallery/index.php?ct=sofas","End tables & bedsides","http://www.rusteak.com/gallery/index.php?ct=end+tables+%26+bedsides","Outdoor teak","http://www.rusteak.com/gallery/index.php?ct=outdoor+teak");
makeMenu("Store Policies",295, 130, 120,
"Store Policies", "http://www.rusteak.com/policies.htm");
makeMenu("News/Specials", 510, 130, 120,
"Specials", "http://www.rusteak.com/gallery/index.php?ct=specials");
makeMenu("Tips", 620, 130, 120,
"Furniture Care", "http://www.rusteak.com/care.htm");
makeMenu("Photo Gallery", 405,130, 80,
"Photo Gallery", "http://www.rusteak.com/gallery/index.php");