function init()
{
	menus[0] = new menu(
	41,			//the height of the menu, measured in pixels
	"horizontal",		//sets type of menu to be displayed
	242, 			//sets the horizontal coordinate of where the menu is to be displayed
	80,  			//sets the vertical coordinate of where the menu is to be displayed
	0, 			//the horizontal offsets(in pixels) to use when showing a new menu from this menu
	0, 			//the vertical offsets(in pixels) to use when showing a new menu from this menu
	"#FFFFFF", 		//the normal background color of each item
	"#FFFFFF", 		//the background color of each item when mouses over that item
	"Verdana", 	//the name of the font used for item text
	9, 			//the point size of the font
	"bold", 		//(when mouse is not over an item)the parameter can have multiple, space-separated values.It can contain one or up to all three of the following font style vaules:bold, italic and underline
	"bold", 		//(when mouse is over an item)the parameter can have multiple, space-separated values.It can contain one or up to all three of the following font style vaules:bold, italic and underline
	"white", 		//the normal color of item text, name or hexadecimal value
	"white", 		//the color of item text when mouse over
	0, 			//describes the size of the border around the menu
	"white", 		//the color of the border around the menu
	0, 			//the distance between the edge of an item and its content
	"", 			//the character that is displayed on the far right side of an item if that item opens a sub-menu, a roll over can be used by putting in "rollover:img1.jpg,img2.jpg"
	false, 			//tells the script to display sub-menus opened from this menu with a mouse click
	false, 			//tells the script to separate each menu item with a divider
	true, 			//defines a main menu if set to true
	false, 			//if set to true, will tell the script to display sub-menus using a transitional effect
	0, 			//this is a number from 1 to 23 setting the type of transition to display.if the previous parameter is false, you can set this to zero
	false, 			//tells the script whether or not to create a shadow for the menu
	4, 			//how far away from the menu the shadow should be displayed, horizontally measured in pixels
	4, 			//how far away from the menu the shadow should be displayed, vertically measured in pixels
	""			//the color of the shadow
	);
	
	
	/*menus[0].addItem(
	"#", 		//define the link that the item can go to upon being clicked
	"", 		//optional link target.set it to arbitary "NewWin" to open this menu in a new window, "FrameName" to open in a specific frame, or "" for no target
	30, 		//the set size of each item(it means the width of each item in horizontal layout menu)
	"left", 	//defines the aligment for item content, it can be "center", "left", "right"
	"", 	//the item content parameter, here you can put the item text, or by putting in "rollover:image1.jpg:image2.jpg"
	0		//the number of the menu to show from this particular item on mouse over or mouse click, please put in zero if the item doesn't open a sub-menu
	);*/
	menus[0].addItem("", "", 88, "left", "<a href=http://www.decompileflash.com/index.htm onMouseOver=MM_swapImage('Image1','','http://www.decompileflash.com/images/nav/button/home_select.gif',1) onMouseOut=MM_swapImgRestore()><img src=http://www.decompileflash.com/images/nav/button/home_normal.gif name=Image1 width=88 height=41 border=0 id=Image1></a>", 1);
	menus[0].addItem("", "", 113, "left", "<a href=http://www.decompileflash.com/download_decompile_flash.htm onMouseOver=MM_swapImage('Image2','','http://www.decompileflash.com/images/nav/button/download_select.gif',1) onMouseOut=MM_swapImgRestore()><img src=http://www.decompileflash.com/images/nav/button/download_normal.gif name=Image2 width=113 height=41 border=0 id=Image2></a>", 2);
	menus[0].addItem("", "", 113, "left", "<a href=http://www.decompileflash.com/decompile_flash/index.htm onMouseOver=MM_swapImage('Image3','','http://www.decompileflash.com/images/nav/button/buy_select1.gif',1) onMouseOut=MM_swapImgRestore()><img src=http://www.decompileflash.com/images/nav/button/buy_normal1.gif name=Image3 width=113 height=41 border=0 id=Image3></a>", 3);
	menus[0].addItem("", "", 102, "left", "<a href=decompile_flash_support.htm onMouseOver=MM_swapImage('Image4','','http://www.decompileflash.com/images/nav/button/support_select.gif',1) onMouseOut=MM_swapImgRestore()><img src=http://www.decompileflash.com/images/nav/button/support_normal.gif name=Image4 width=102 height=41 border=0 id=Image4></a>", 4);
	menus[0].addItem("", "", 134, "left", "<a href=SDK_Customization.htm onMouseOver=MM_swapImage('Image5','','http://www.decompileflash.com/images/nav/button/sdk1_select.gif',1) onMouseOut=MM_swapImgRestore()><img src=http://www.decompileflash.com/images/nav/button/sdk1_normal.gif name=Image5 width=134 height=41 border=0 id=Image5></a>", 5);
	menus[0].addItem("", "", 120, "left", "<a href=about_us.htm onMouseOver=MM_swapImage('Image6','','http://www.decompileflash.com/images/nav/button/company_select1.gif',1) onMouseOut=MM_swapImgRestore()><img src=http://www.decompileflash.com/images/nav/button/company_normal1.gif name=Image6 width=120 height=41 border=0 id=Image6></a>", 6);
	
	
	menus[1] = new menu(
	160, 			//the width of the menu, measured in pixels                                                                                                                                                 
	"vertical",             //sets type of menu to be displayed                                                                                                                                                          
	0,                      //sets the horizontal coordinate of where the menu is to be displayed                                                                                                                        
	0,                      //sets the vertical coordinate of where the menu is to be displayed                                                                                                                          
	-5,                     //the horizontal offsets(in pixels) to use when showing a new menu from this menu                                                                                                            
	-5,                     //the vertical offsets(in pixels) to use when showing a new menu from this menu                                                                                                              
	"f0f0f0",               //the normal background color of each item                                                                                                                                                   
	"666666",               //the background color of each item when mouses over that item                                                                                                                               
	"Verdana",      //the name of the font used for item text                                                                                                                                                    
	0,                      //the point size of the font                                                                                                                                                                 
	"",                     //(when mouse is not over an item)the parameter can have multiple, space-separated values.It can contain one or up to all three of the following font style vaules:bold, italic and underline
	"",                     //(when mouse is over an item)the parameter can have multiple, space-separated values.It can contain one or up to all three of the following font style vaules:bold, italic and underline    
	"black",                //the normal color of item text, name or hexadecimal value                                                                                                                                   
	"white",                //the color of item text when mouse over                                                                                                                                                     
	1,                      //describes the size of the border around the menu                                                                                                                                           
	"white",                //the color of the border around the menu                                                                                                                                                    
	4,                      //the distance between the edge of an item and its content                                                                                                                                   
	160,                    //the character that is displayed on the far right side of an item if that item opens a sub-menu, a roll over can be used by putting in "rollover:img1.jpg,img2.jpg"                         
	false,                  //tells the script to display sub-menus opened from this menu with a mouse click                                                                                                             
	true,                   //tells the script to separate each menu item with a divider                                                                                                                                 
	false,                  //defines a main menu if set to true                                                                                                                                                         
	false,                  //if set to true, will tell the script to display sub-menus using a transitional effect                                                                                                      
	0,                      //this is a number from 1 to 23 setting the type of transition to display.if the previous parameter is false, you can set this to zero                                                       
	false,                  //tells the script whether or not to create a shadow for the menu                                                                                                                            
	4,                      //how far away from the menu the shadow should be displayed, horizontally measured in pixels                                                                                                 
	4,                      //how far away from the menu the shadow should be displayed, vertically measured in pixels                                                                                                   
	"444444"                      //the color of the shadow                                                                                                                                                                    
	);
	

	
	
menus[1] = new menu(220	, "vertical", 0, 0, -5, -5, "f0f0f0", "666666", "Verdana", 9, "", 
		"", "black", "white", 2, "white", 6, 160, false, true, false, false, 0, false, 4, 4, "");
		menus[1].addItem("http://www.decompileflash.com/decompile_flash_free/index.htm", "", 24, "left", "&nbsp;Decompile Flash Free Version", 0);
		menus[1].addItem("http://www.decompileflash.com/decompile_flash/index.htm", "", 24, "left", "&nbsp;Decompile Flash", 0);

	menus[2] = new menu(160, "vertical", 0, 0, -5, -5, "f0f0f0", "666666", "Verdana", 9, "", 
		"", "black", "white", 2, "white", 6, 160, false, true, false, false, 0, false, 4, 4, "");
	



	menus[3] = new menu(200, "vertical", 0, 0, -5, -5, "f0f0f0", "666666", "Verdana", 9, "", 
		"", "black", "white", 2, "white", 6, 200, false, true, false, false, 0, false, 4, 4, "");


	menus[4] = new menu(210, "vertical", 0, 0, -5, -5, "f0f0f0", "666666", "Verdana", 9, "", 
		"", "black", "white", 2, "white", 6, 210, false, true, false, false, 0, false, 4, 4, "");

	

	menus[5] = new menu(180, "vertical", 0, 0, -5, -5, "f0f0f0", "666666", "Verdana", 9, "", 
		"", "black", "white", 2, "white", 6, 180, false, true, false, false, 0, false, 4, 4, "");



	menus[6] = new menu(190, "vertical", 0, 0, -5, -5, "f0f0f0", "666666", "Verdana", 9, "", 
		"", "black", "white", 2, "white", 6, 190, false, true, false, false, 0, false, 4, 4, "");

	
}