/********************************************************************************
Variables to set.
Remember that to set fontsize and fonttype you set that in the stylesheet
above!
********************************************************************************/
//Making a menu object
oMenu=new menuObj('oMenu') 
//Place a name for the menu in there. Must be uniqe for each menu
//Setting menu object variables
//Style variables NOTE: The stylesheet have been removed. Use this instead! (some styles are there by default, like position:absolute ++)
//oMenu.clMain='background-color: #900000;padding:1px; font-family:MS Sans Serif; font-size:12px;border:1px solid BLACK;' //The style for the main menus
oMenu.clMain='color:white;vertical-align:middle;border:1px solid BLACK;font-family:MS Sans Serif; font-size:10px;' //The style for the submenus
oMenu.clSub='color:white;vertical-align:middle;border:1px solid BLACK;font-family:MS Sans Serif; font-size:10px;' //The style for the submenus
oMenu.clSub1='color:white;vertical-align:middle;border:1px solid BLACK;font-family:MS Sans Serif; font-size:10px;' //The style for the submenus
oMenu.clSubSub='color:white;vertical-align:middle;border:1px solid BLACK;font-family:MS Sans Serif; font-size:10px;' //The style for the subsubmenus
oMenu.clAMain='font-family:MS Sans Serif;text-decoration:none; color:white; font-weight:bold;' //The style for the main links
oMenu.clASub='font-family:MS Sans Serif;text-decoration:none; color:white; font-weight:bold;' //The style for the sub links
oMenu.clASubSub='font-family:MS Sans Serif;text-decoration:none; font-weight:bold;color:white' //The style for the subsub links



oMenu.mainheight=20 //The height of the main menuitems in pixel or %
oMenu.mainwidth=136 //The width of the main menuitems  in pixel or %

/*These are new variables. In this example they are set like the previous version*/
oMenu.subwidth=165// ** NEW ** The width of the submenus
oMenu.subheight=20 //The height if the subitems in pixel or % 

oMenu.subsubwidth=165 // ** NEW ** The width of the subsubmenus in pixel or % 
oMenu.subsubheight=20//** NEW ** The height if the subsubitems in pixel or % 
oMenu.subsubheight1=30//** NEW ** The height if the subsubitems in pixel or % 

//Writing out the style for the menu (leave this line!)
oMenu.makeStyle()

oMenu.subplacement=oMenu.mainwidth //** NEW ** Relative to the main item
oMenu.subsubXplacement=oMenu.subwidth //** NEW ** The X placement of the subsubmenus, relative to the sub item
oMenu.subsubYplacement=0 //** NEW ** The Y placement of the subsubmenus, relative to the sub item
oMenu.mainbgcoloroff='900000' //The backgroundcolor of the main menuitems
oMenu.mainbgcoloron='#0A9AF6' //The backgroundcolor on mouseover of the main menuitems
oMenu.subbgcoloroff='#900000' //The backgroundcolor of the sub menuitems   7F88AF
oMenu.subbgcoloron='#0A9AF6' //The backgroundcolor on mouseover of the sub menuitems   4F5780
oMenu.subsubbgcoloroff='#900000' //The backgroundcolor of the subsub menuitems   7F88AF
oMenu.subsubbgcoloron='#FF9933' //The backgroundcolor on mouseover of the subsub menuitems   4F5780
oMenu.stayoncolor=1 //Do you want the menus to stay on the mouseovered color when clicked?

oMenu.menuspeed=6 //The speed of the clipping in px
oMenu.menusubspeed=6 //The speed of the submenus clipping in px

oMenu.menurows=0 //Set to 0 if you want rows and to 1 if you want columns

oMenu.menueventon="mouse" //Set this to "mouse" if you want the menus to appear onmouseover, set it to "click" if you want it to appear onclick
oMenu.menueventoff="mouse" //Set this to "mouse" if you them to disappear onmouseout, if not set it to "click"

//Placement of the menuitems
//Example in %:
//oMenu.menuplacement=new Array("20%") //Remember to make the arrays contain as many values as you have main menuitems
//Example in px: (remember to use the ' ' around the numbers)
//oMenu.menuplacement=new Array(10)
//Example right beside eachother (only adding the pxbetween variable)
oMenu.menuplacement=0
//If you use the "right beside eachother" you cant how many pixel there should be between each here
oMenu.pxbetween=2 //in pixel or %
//And you can set where it should start from the left here
oMenu.fromleft=0 //in pixel or %
//This is how much from the top the menu should be.
oMenu.fromtop=222 //in pixel or %
/********************************************************************************
Construct your menus below
********************************************************************************/
//MAIN 0
//Main items:
//ART SECTION STARTS HERE
oMenu.makeMain(0,'&nbsp;&nbsp;&nbsp;Why VLS','/webfiles/whyvls.html','_parent',0)

	
//ART SECTION ENDS HERE	






	//EXOTIC HOLIDAY SECTION STARTS HERE		
oMenu.makeMain(1,'&nbsp;&nbsp;&nbsp;Careers','#','_parent',5)
	oMenu.makeSub(1,0,'&nbsp;Join VLS&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;','/webfiles/join.html',5)

oMenu.makeSub(1,1,'&nbsp;Current Hot Jobs&nbsp;&nbsp;&nbsp;&nbsp;','/webfiles/jobs.html',5)

		oMenu.makeSub(1,2,'&nbsp;Benefits&nbsp;&nbsp;&nbsp;','/webfiles/benefits.html',5)

	oMenu.makeSub(1,3,'&nbsp;Referral Package&nbsp;&nbsp;&nbsp;&nbsp;','/webfiles/referal.html',5)


oMenu.makeSub(1,4,'&nbsp;Technologies&nbsp;&nbsp;&nbsp;&nbsp;','/webfiles/focus.html',5)


//EXOTIC HOLIDAY SECTION ENDS HERE	


//FASHION SECTION STARTS HERE	
oMenu.makeMain(2,'&nbsp;&nbsp;&nbsp;Hire VLS','/webfiles/hire.html','_parent',0)
//FASHION SECTION ENDS HERE	


	
//FOOD SECTION STARTS HERE	
	//Sub items:
	// makeSub(MAIN_NUM,SUB_NUM,'TEXT','LINK',TOTAL,'FRAME_TARGET') (set link to 0 if you want submenus of this menu item)
oMenu.makeMain(3,'&nbsp;&nbsp;&nbsp;Partners','/webfiles/partners.html','_parent',0)

//FOOD SECTION ENDS HERE



//EMPLOYEE LOGIN		
//Removed - As per Kris,In India, Instruction 06-26-2006- Syed
//oMenu.makeMain(4,'&nbsp;&nbsp;&nbsp;Employee //Login','http://www.itvls.com/vlsweb','_parent',0)
//NIGHTLIFE SECTION ENDS HERE		
					

		
/********************************************************************************
End menu construction
********************************************************************************/
		
//When all the menus are written out we initiates the menu
oMenu.construct()	
