// *****************************************************************************
// **                                SETTINGS                                 **
// *****************************************************************************

// '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='../leftbar/';

// the filename of the page the menu appears in eg 'menu.html'
thisPage='leftbar.htm';

// 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/navigation/';

// do you want to use images for the category bullets?
lev1img='yes';					// insert yes or no

// give image names and dimensions
lev1OpName='big_down_arrow.gif';			// open image name
lev1OpHeight='20';				// image height
lev1OpWidth='20';				// image width

lev1ClosName='big_right_arrow.gif';		// closed image name
lev1ClosHeight='20';			// image height
lev1ClosWidth='20';				// image width

// do you want to use images for the sub-category bullets?
lev2img='yes';		// insert yes or no

// give image names and dimensions
lev2Name='small_right_arrow.gif';			// image name
lev2Height='7';				// image height
lev2Width='17';					// image width

// do you want to use a text character for the sub-category bullets?
lev2Char='no';		// insert yes or no

// set bullet character for level 2 bullets
bullet = '&#155; ';

// base target - the frame that the links are targetting
base = 'main';

// *****************************************************************************
// **                             END OF SETTINGS                             **
// *****************************************************************************

// 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 + '">');

// *****************************************************************************
// **                             BUILD MENU DATA                             **
// *****************************************************************************

// Interior Menu
if (page=='Interior') {
thisMenu = new Array();
thisMenu[0] = new subMenu('kitchens','../minigallery/kitchens.htm');
thisMenu[1] = new subMenu('flooring, tiling','../minigallery/flooringt.htm');
thisMenu[2] = new subMenu('lofts, extensions','../minigallery/loftc.htm');
thisMenu[3] = new subMenu('patios, decking, fences','../minigallery/patiosdf.htm');
thisMenu[4] = new subMenu('stairs, fireplaces & more','../minigallery/stairspm.htm');

}

// Interior Menu
if (page=='Exterior') {
thisMenu = new Array();
thisMenu[0] = new subMenu('gardens','../exterior/exterior_design.htm');
thisMenu[1] = new subMenu('extensions','../exterior/extensions.htm');

}
 

