function MenuBuild()//Building and configuring menu
{

is = new BrowserCheck()//Checking browser version
TE=new TreeItem(0,0,"items2","","");//creating menu object
TE.xpos=209;TE.ypos=0;//x and y position
TE.align="hor";//alignment "vert" - vertical "hor" - horizontal
TE.bckColor="#EEDDFF";//back color
TE.selBckColor="#CE31FF";//back coloro for selected items
TE.fntColor="#000000";//font color
TE.selFntColor="#FFFFFF";//font color for selected items
TE.width=140;//column width
TE.fntSize=1;//font size
TE.iHeight=20;//item height
TE.imWidth=20;//icon image width
TE.bSize=1;//border width
TE.face="Verdana";// font face
TE.b=true;// bold style
TE.i=false;// italic style
TE.u=false;// underlined style
TE.bColor="#FFFFFF";//border color
TE.arrIm="arrow1.gif";
TE.arrIm1="arrow2.gif";
// inserting items into menu
//A(ItemID,ParentID,"title",URL,icon URL,rollower icon URL);
TE.A(1,0,"Projects","","","fold1.gif");
TE.A(2,0,"Artist Group","","","fold1.gif");
TE.A(3,0,"About","index.html","","fold1.gif");
TE.A(4,0,"E-mail","mailto:onsite@corinnaboughton.com","","fold1.gif");
TE.A(5,2,"Corinna Boughton","corinnab.html","","doc1.gif");
TE.A(6,2,"Paul Coles","paulc.html","","doc1.gif");
TE.A(7,2,"Paul Eachus","paule.html","","doc1.gif");
TE.A(8,2,"Nooshin Farhid","nooshinf.html","","doc1.gif");
TE.A(9,2,"Joanna Greenhill","joannag.html","","doc1.gif");
TE.A(10,2,"Berta Ipina","bertai.html","","doc1.gif");
TE.A(11,2,"Sally-Anne Jones","sallyj.html","","doc1.gif");
TE.A(12,2,"Tina Keane","tinak.html","","doc1.gif");
TE.A(13,2,"Madeleine King","madeleinek.html","","doc1.gif");
TE.A(14,2,"Shaheen Merali","shaheenm.html","","doc1.gif");
TE.A(15,2,"Emma Middleton","emmam.html","","doc1.gif");
TE.A(16,2,"Tighe O'Connor","tigheo.html","","doc1.gif");
TE.A(17,2,"Michaela Reiser","michaelar.html","","doc1.gif");
TE.A(18,2,"Jenny Runacre","jennyr.html","","doc1.gif");
TE.A(19,2,"Dean Simpson","deans.html","","doc1.gif");
TE.A(20,2,"Hayley Skipper","hayleys.html","","doc1.gif");
TE.A(21,2,"Chris Wainwright","chrisw.html","","doc1.gif");
TE.A(22,1,"Workshops","comm.html","","fold1.gif");
TE.A(23,1,"Current Projects","current.html","","fold1.gif");
TE.A(24,1,"Future Projects","future.html","","fold1.gif");
TE.A(25,3," Group Structure","group.html","","fold1.gif");

TE.WriteCSS();
TE.WriteDiv();
//TE.Reset();-Don't place Reset in menuBuild function!!!!
}
function MenuInit()//Inits menu Events
{
TE.EventInit();
}
function Reset()//Reseting menu
{
TE.Reset();
}
