<!--
// 'linka' use this if part of the URL is the same in ALL the links
// In this example all the files are in a subfolder called 'pages'
linka='';

// the filename of the page the menu appears in eg 'menu.shtmll'
thisPage='';

// Do you want to use images for the category bullets?
// If so then specify the path to your images folder from the menu page
imgPath='images/';

// do you want to use images for the category bullets?
lev1img='no';					// insert yes or no

// give image names and dimensions
lev1OpName='open.gif';			// open image name
lev1OpHeight='10';				// image height
lev1OpWidth='10';				// image width

lev1ClosName='closed.gif';		// closed image name
lev1ClosHeight='10';			// image height
lev1ClosWidth='10';				// image width

// do you want to use images for the sub-category bullets?
lev2img='no';		// insert yes or no

// give image names and dimensions
lev2Name='bullet.gif';			// image name
lev2Height='10';				// image height
lev2Width='16';					// image width

// do you want to use a text character for the sub-category bullets?
lev2Char='yes';		// insert yes or no

// set bullet character for level 2 bullets
bullet = '&#155; ';

// base target - the frame that the links are targetting
base = '_self';

// pulls 'page' variable out of URL - do not alter
	var x = 0
	page = location.search.substr(1).split("?")
	for (x=0;x<=page.length;x++) {
		eval(page)
		}
page = escape(page);
page = page.slice(7);

// do not alter this bit
function subMenu(name,linkb) {
 this.name = name;
 this.linkb = linkb;
}
document.write('<BASE target="' + base + '">');

// Automatic Gates
if (page=='auto_gates') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Accessories','gate_accessories.shtml?page=auto_gates');
thisMenu[1] = new subMenu('Commercial','gate_commercial.shtml?page=auto_gates');
thisMenu[2] = new subMenu('Residential','gate_residential.shtml?page=auto_gates');
}

//Chain Link Menu
if (page=='chain_link') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Colored','cl_colored.shtml?page=chain_link');
thisMenu[1] = new subMenu('Galvanized','cl_galvanized.shtml?page=chain_link');
thisMenu[2] = new subMenu('Custom','cl_custom.shtml?page=chain_link');
thisMenu[3] = new subMenu('Slatting','cl_slatting.shtml?page=chain_link');
}

// Ornamental Iron Menu
if (page=='orn_iron') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Aristocrat','oi_aristocrat.shtml?page=orn_iron');
thisMenu[1] = new subMenu('Fortress','oi_fortress.shtml?page=orn_iron');
thisMenu[2] = new subMenu('Regal','oi_regal.shtml?page=orn_iron');
thisMenu[3] = new subMenu('Custom','oi_custom.shtml?page=orn_iron');
}

//  Vinyl Fences & Gates Menu
if (page=='vinyl_fg') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Ornamental','vfg_ornamental.shtml?page=vinyl_fg');
thisMenu[1] = new subMenu('Arched - Picket - Scalloped','vfg_picket.shtml?page=vinyl_fg');
thisMenu[2] = new subMenu('Private - Semi-Private','vfg_privacy.shtml?page=vinyl_fg');
thisMenu[3] = new subMenu('Post & Rail','vfg_postrail.shtml?page=vinyl_fg');
thisMenu[4] = new subMenu('Arbors','vlg_arbors.shtml?page=vinyl_fg');
//thisMenu[5] = new subMenu('Trellises','vlg_trellises.shtml?page=vinyl_fg');
thisMenu[5] = new subMenu('Vinyl FAQ','vfg_faq.shtml?page=vinyl_fg');
}

//  Wood Menu
if (page=='wood') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Dog Ear','wood_dogear.shtml?page=wood');
thisMenu[1] = new subMenu('Picket','wood_picket.shtml?page=wood');
thisMenu[2] = new subMenu('Post & Pole','wood_postpole.shtml?page=wood');
thisMenu[3] = new subMenu('Postmaster Steel Posts','wood_steelposts.shtml?page=wood');

}

//  Accessories and Hardware Menu
if (page=='accessories') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Accessories','accessories.shtml?page=accessories');
thisMenu[1] = new subMenu('Hardware','hardware.shtml?page=accessories');
}
//-->