<!--
// *****************************************************************************
// **      JavaScript Tree Menu Copyright Net Explorers Ltd 2001              **
// *****************************************************************************

// *****************************************************************************
// **                                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='';

// the filename of the page the menu appears in eg 'menu.html'
thisPage='services.php';
thisIndexPage='index.php';

// 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='yes';					// insert yes or no

// give image names and dimensions
lev1OpName='../images/open.gif';			// open image name
lev1OpHeight='10';				// image height
lev1OpWidth='10';				// image width

lev1ClosName='../images/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='yes';		// insert yes or no

// give image names and dimensions
lev2Name='../images/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='no';		// insert yes or no

// set bullet character for level 2 bullets
bullet = '';

// base target - the frame that the links are targetting
base = '';

// *****************************************************************************
// **                             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="_parent' + base + '">');

// *****************************************************************************
// **                             BUILD MENU DATA                             **
// *****************************************************************************

// Web Development Menu
if (page=='development') {
thisMenu = new Array();
thisMenu[0] = new subMenu('&nbsp;Hosting','hosting_packages.php');
thisMenu[1] = new subMenu('&nbsp;Design','services_WS.php');
thisMenu[2] = new subMenu('&nbsp;Name Registration','_whois/tld_check.php');
//thisMenu[3] = new subMenu('&nbsp;Maintenance','maintain.php');
//thisMenu[4] = new subMenu('&nbsp;Flash Presentations','flash.php');
}

// Real Estate Marketing
if (page=='marketing') {
thisMenu = new Array();
thisMenu[0] = new subMenu('&nbsp;Listing Brochures','services_BR.php');
thisMenu[1] = new subMenu('&nbsp;Just Listed/Sold Post Cards','services_PC.php');
//thisMenu[2] = new subMenu('&nbsp;Home Photography/Tours','order_forms/order_photog.php');
//thisMenu[3] = new subMenu('&nbsp;Home Books/Relo Packets','books.php');
//thisMenu[4] = new subMenu('&nbsp;Magazine Ads','ads.php');
//thisMenu[5] = new subMenu('&nbsp;Full Service Packets','services_packages.php');
}

// Corporate ID Menu
if (page=='id') {
thisMenu = new Array();
thisMenu[0] = new subMenu('&nbsp;Business Cards','bus_cards.php');
thisMenu[1] = new subMenu('&nbsp;Letterhead','leterhead.php');
thisMenu[2] = new subMenu('&nbsp;Personal Identity/Logos','logos.php');
thisMenu[3] = new subMenu('&nbsp;Corporate ID','id.php');
thisMenu[4] = new subMenu('&nbsp;Print Collateral','collateral.php');
thisMenu[5] = new subMenu('&nbsp;Brand Development','brand.php');
thisMenu[6] = new subMenu('&nbsp;Print Advertisements','print_ads.php');
}

// Popular Items:
if (page=='popular') {
thisMenu = new Array();
thisMenu[0] = new subMenu('&nbsp;Listing Brochures','portfolio_links/Flyers.php');
thisMenu[1] = new subMenu('&nbsp;Postcards','portfolio_links/Postcards.php');
thisMenu[2] = new subMenu('&nbsp;Web Services','services.php');
thisMenu[3] = new subMenu('&nbsp;Business Cards','portfolio_links/BusinessCards.php');
//thisMenu[4] = new subMenu('&nbsp;Flash Presentations','flash.php');
}
//-->