/*Copyright (c) Thomas Brattli - www.dhtmlcentral.com*/
/*CoolMenu4 Customized by Kevin*/

//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

oCMenu.frames = 1

//Menu properties   
oCMenu.pxBetween=5
oCMenu.fromLeft=5 
oCMenu.fromTop=0   
oCMenu.rows=1 
oCMenu.menuPlacement="left"
                                                             
oCMenu.offlineRoot="file:///D:/fastz/www/gtp/"
oCMenu.onlineRoot="http://www.fastgp.com/"
oCMenu.resizeCheck=0			// KL - Buggy if set to 1 
oCMenu.wait=1000 
oCMenu.fillImg="MenuGTP/cm_fill.gif"
oCMenu.zIndex=0

//Background bar properties
oCMenu.useBar=1
oCMenu.barWidth="100%"
oCMenu.barHeight="menu" 
oCMenu.barClass="clBar"
oCMenu.barX=0 
oCMenu.barY=0
oCMenu.barBorderX=0
oCMenu.barBorderY=0
oCMenu.barBorderClass=""

//Level properties - ALL properties have to be spesified in level 0
oCMenu.level[0]=new cm_makeLevel() //Add this for each new level
oCMenu.level[0].width=110
oCMenu.level[0].height=15
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=1
oCMenu.level[0].borderY=1
oCMenu.level[0].borderClass="clLevel0border"
oCMenu.level[0].offsetX=0
oCMenu.level[0].offsetY=0
oCMenu.level[0].rows=0
oCMenu.level[0].arrow=0
oCMenu.level[0].arrowWidth=0
oCMenu.level[0].arrowHeight=0
oCMenu.level[0].align="bottom"


//EXAMPLE SUB LEVEL[1] PROPERTIES - You have to specify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[1].width=oCMenu.level[0].width+15
oCMenu.level[1].height=15
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderX=1
oCMenu.level[1].borderY=1
oCMenu.level[1].align="right" 
oCMenu.level[1].offsetX=-(oCMenu.level[0].width-2)/2+20
oCMenu.level[1].offsetY=0
oCMenu.level[1].borderClass="clLevel1border"


//EXAMPLE SUB LEVEL[2] PROPERTIES - You have to spesify the properties you want different from LEVEL[1] OR LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[2]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[2].width=150
oCMenu.level[2].height=15
oCMenu.level[2].offsetX=0
oCMenu.level[2].offsetY=0
oCMenu.level[2].regClass="clLevel2"
oCMenu.level[2].overClass="clLevel2over"
oCMenu.level[2].borderClass="clLevel2border"


/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/
oCMenu.makeMenu('top0','','GTP Home','index.html')
	oCMenu.makeMenu('sub00','top0','GTP Dimensions','GTP_Dimensions.html')
	oCMenu.makeMenu('sub01','top0','GTP Specs','GTP_Specs.html')
	oCMenu.makeMenu('sub02','top0','About this site','GTP_About.html')
	oCMenu.makeMenu('sub03','top0','My 02 Z06','http://www.fastz.com/','_top')
	
oCMenu.makeMenu('top1','','Autoshow Pics','')
	oCMenu.makeMenu('sub10','top1','GrandPrix G8','GTP_G8.html')
	oCMenu.makeMenu('sub11','top1','GrandPrix GForce','GTP_GForce.html')
	
oCMenu.makeMenu('top2','','Modifications','')
	oCMenu.makeMenu('sub22','top2','Engine/Tranny','')
		oCMenu.makeMenu('sub220','sub22','Magnuson Snout','GTP_Pulley.html')
		oCMenu.makeMenu('sub221','sub22','Caspers','')
			oCMenu.makeMenu('sub2210','sub221','Caspers FPR','GTP_FPR.html')
			oCMenu.makeMenu('sub2211','sub221','Caspers TPS','GTP_TPS-TEC.html')
		oCMenu.makeMenu('sub223','sub22','MSP','')
			oCMenu.makeMenu('sub2230','sub223','MSP CAI','GTP_ColdAirBox.html')
			oCMenu.makeMenu('sub2231','sub223','MSP Compu-Cool','GTP_FanMod.html')
		oCMenu.makeMenu('sub224','sub22','NGK Plugs','GTP_SparkPlugs.html')
		oCMenu.makeMenu('sub225','sub22','Optima Batt.','GTP_Optima.html')
		oCMenu.makeMenu('sub226','sub22','RAT TB Spacer','GTP_TB_Spacer.html')
		oCMenu.makeMenu('sub227','sub22','Reprog. PCM','GTP_PCM.html')
		oCMenu.makeMenu('sub228','sub22','Tranny','')
			oCMenu.makeMenu('sub2280','sub228','Tranny Cooler','GTP_TrannyCooler.html')
			oCMenu.makeMenu('sub2281','sub228','Thrasher ShiftKit','GTP_ShiftKit.html')
	oCMenu.makeMenu('sub23','top2','Exhaust','')
		oCMenu.makeMenu('sub230','sub23','Borla Exhaust','GTP_Exhaust.html')
		oCMenu.makeMenu('sub231','sub23','Headers','GTP_Headers.html')
		oCMenu.makeMenu('sub232','sub23','RAT Heat Sheild','GTP_HeatShield.html')
		oCMenu.makeMenu('sub233','sub23','RT Cat','GTP_RTCat.html')
	oCMenu.makeMenu('sub24','top2','Exterior','')
		oCMenu.makeMenu('sub240','sub24','ASCD RAM Air Hood','GTP_Hood.html')
		oCMenu.makeMenu('sub242','sub24','GTS Covers','GTP_GTS.html')
		oCMenu.makeMenu('sub243','sub24','Fog Lights','GTP_Fog.html')
		oCMenu.makeMenu('sub244','sub24','Headlights','GTP_HeadLights.html')
		oCMenu.makeMenu('sub245','sub24','PerfectFit Bra','GTP_CarBra.html')
	oCMenu.makeMenu('sub25','top2','Interior','')
		oCMenu.makeMenu('sub250','sub25','Audio Upgrades','GTP_Audio.html')
		oCMenu.makeMenu('sub251','sub25','AutoMeter Gauges','GTP_Gauges.html')
		oCMenu.makeMenu('sub252','sub25','CF Dash','GTP_Dash.html')
		oCMenu.makeMenu('sub253','sub25','Donnelly Mirror','GTP_Donnelly.html')
		oCMenu.makeMenu('sub254','sub25','GM Winter Mats','GTP_Mats.html')
		oCMenu.makeMenu('sub255','sub25','White Gauges(NR Auto)','GTP_WhiteGauges.html')
	oCMenu.makeMenu('sub26','top2','Fix It!','')
		oCMenu.makeMenu('sub260','sub26','Spoiler Chip','GTP_FixSpoiler.html')
		oCMenu.makeMenu('sub261','sub26','Squeaky Console','GTP_FixConsole.html')
	oCMenu.makeMenu('sub28','top2','Suspension/Brakes','')
		oCMenu.makeMenu('sub280','sub28','GM F. STB','GTP_STB_Front.html')
		oCMenu.makeMenu('sub281','sub28','GM R. STB','GTP_STB_Rear.html')
		oCMenu.makeMenu('sub282','sub28','KVR Rotors/Pads','GTP_Brakes.html')
		oCMenu.makeMenu('sub283','sub28','RAT F. SwayBar','GTP_Sway_Front.html')
		oCMenu.makeMenu('sub284','sub28','RAT R. SwayBar','GTP_Sway_Rear.html')
	oCMenu.makeMenu('sub29','top2','Wheels','')
		oCMenu.makeMenu('sub290','sub29','Wheels','GTP_Wheels_Konig.html')

oCMenu.makeMenu('top4','','Club Info','')
	oCMenu.makeMenu('sub40','top4','GrandPrix.Net','http://www.grandprix.net/','_blank')
	oCMenu.makeMenu('sub41','top4','ClubGP','http://www.clubgp.com/','_blank')
	oCMenu.makeMenu('sub44','top4','MACGP','http://macgp.clubgp.com/','_blank')
	oCMenu.makeMenu('sub45','top4','NYMCGP','http://www.geocities.com/nymcgp/home.html','_blank')

oCMenu.makeMenu('top5','','Stores','')
	oCMenu.makeMenu('sub050','top5','PFYC ','http://www.pfyc.com','_blank')
	oCMenu.makeMenu('sub051','top5','GrandPrix Store ','http://www.grandprixstore.com','_blank')

oCMenu.makeMenu('top6','','My Other Cars','')
	oCMenu.makeMenu('sub60','top6','2003 BMW M3','http://www.fastm.com/','_top')
	oCMenu.makeMenu('sub61','top6','2002 Z06','http://www.fastz.com/','_top')
	oCMenu.makeMenu('sub62','top6','2003 Lexus IS300 *SOLD*','../is300/New.html')
		oCMenu.makeMenu('sub620','sub62','My 03 IS300','../is300/New.html')
		oCMenu.makeMenu('sub621','sub62','IS300 Window Sticker','../is300/WindowSticker.html')
	oCMenu.makeMenu('sub63','top6','RC Car','../RC/HPIRacer2.html')

//Leave this line - it constructs the menu
oCMenu.construct()