//General Settings

//width of nav in pixels is set here.
var intwidth="290"

//target for links. Leave empty to open links in the same window
var strTarget=""
//images for tree

//path for images
var imagepath = "menu_files/images/"

//Images are contained in the arImages array
arImages = new Array();
arImages[0] = "house.gif";
arImages[1] = "closedfolder.gif";
arImages[2] = "link.gif";
arImages[3] = "photo.gif";
arImages[4] = "script.gif";
arImages[5] = "comic.gif";
arImages[6] = "disk.gif";
arImages[7] = "cube.gif";
arImages[8] = "addfolder.gif";
arImages[9] = "newlink.gif";
arImages[10] = "ts_page.gif";
arImages[11] = "ts_folder.gif";
arImages[12] = "blank.gif"

//Images for opening and closing folders are set up here 
var imgclosefoldersrc = new Image();
//imgclosefoldersrc.src = "closedfolder.gif";
imgclosefoldersrc.src = "blank.gif";
var imgopenfoldersrc = new Image();
//imgopenfoldersrc.src = "openfolder.gif";
imgopenfoldersrc.src = "blank.gif";

//Tree data

//the content of the menu is defined using the add1stlevel, 
//add2ndlevel etc... functions which all take the following parameters: 
//
//addNlevelitem("[item name]","[item url]",[image code])
//(note: image codes are defined above)
//

//The first item is the root of the tree
add1stlevelitem("","index.html",12);
add1stlevelitem("","index.html",12);
add1stlevelitem("","index.html",12);
add1stlevelitem("","index.html",12);
add1stlevelitem("","index.html",12);
add1stlevelitem("","index.html",12);
add1stlevelitem("","index.html",12);
add1stlevelitem("","index.html",12);
add1stlevelitem("","index.html",12);
add1stlevelitem("","index.html",12);
add1stlevelitem("","index.html",12);
add1stlevelitem("HOME","index.html",12);
add1stlevelitem("TERRA+FORM","Gallery/terra-form.html",12);
add1stlevelitem("&nbsp;&nbsp;&nbsp;&nbsp;COUNTERTOPS","Gallery/countertops.html",12);
add1stlevelitem("&nbsp;&nbsp;&nbsp;&nbsp;SINKS","Gallery/sinks.html",12);
add1stlevelitem("&nbsp;&nbsp;&nbsp;&nbsp;FIREPLACES","Gallery/fireplaces.html",12);
add1stlevelitem("&nbsp;&nbsp;&nbsp;&nbsp;FURNITURE","Gallery/furniture.html",12);
add1stlevelitem("FINISHES","Gallery/finishes.html",12);
add1stlevelitem("&nbsp;&nbsp;&nbsp;&nbsp;TERRA+STONE","Gallery/stone.html",12);
add1stlevelitem("&nbsp;&nbsp;&nbsp;&nbsp;TERRA+ZZO","Gallery/zzo.html",12);
add1stlevelitem("&nbsp;&nbsp;&nbsp;&nbsp;TERRA+MOTO","Gallery/moto.html",12);
add1stlevelitem("CONTACT","contact.html",12);
add1stlevelitem("FAQ","FAQ.html",12);
//  add2ndlevelitem("COUNTERTOPS","works.html",12);
//  add2ndlevelitem("SINKS","works.html",12);
//  add2ndlevelitem("FIREPLACES","works.html",12);
//  add2ndlevelitem("FURNITURE","works.html",12);

