//**** DHTML Web Menu, (c) 2004, OpenCube Inc.,  -  www.opencube.com ****
//

function cdd_menu0(){//////////////////////////Start Menu Data/////////////////////////////////
/**********************************************************************************************

 Menu 0 - General Settings and Menu Structure

 **See the menu_styles.css file for additional customization options**

***********************************************************************************************/

/* this is the licensing code which removes the OpenCube logo from the menu...do not remove ***/
um0http = 1
/**********************************************************************************************/


/*---------------------------------------------
Icon Images
---------------------------------------------*/

//Define two types of unlimited icon images below, associate any image
//with any item using both the 'icon_rel' and 'icon_abs' parameter in the
//sub menu structure section (set to the index number of the icon image)


 this.rel_icon_image0 = "cdd_pixel.gif"
 this.rel_icon_rollover0 = "cdd_pixel.gif"
 // this.rel_icon_image_wh0 = "13,8"
 this.rel_icon_image_who = "1,1"
 
    //Absolute positioned icon images (coordinate positioned - relative to 
    //right top corner of the menu item displaying the icon.)

 this.abs_icon_image0 = "cdd_pixel.gif"
 this.abs_icon_rollover0 = "cdd_pixel.gif"
 this.abs_icon_image_wh0 = "13,10"
 this.abs_icon_image_xy0 = "-20,13"
 
 this.rel_icon_image1 = "menu_arrow.gif"
 this.rel_icon_rollover1 = "menu_arrow.gif"
 this.rel_icon_image_wh1 = "5,10" // The height and width for the menu arrow
 

/*---------------------------------------------
Divider Settings
---------------------------------------------*/


 this.use_divider_caps = false  //cap the top and bottom of each menu group
 this.divider_width = 0   //applies to horizontal menus only
 this.divider_height = 0   //applies to vertical menus only


    //available specific settings

 this.use_divider_capsX = false




/*---------------------------------------------
Menu Orientation and Dimensions
---------------------------------------------*/

   //All values below are defined in pixel units.  Only the 
   //width of items and menu groups may be defined, heights 
   //are automatically determined by the font size and padding
   //values below.  See the menu_styles.css file for additional
   //border color and style settings.


 this.is_horizontal = false   //applies to all menu groups
 this.is_horizontal_main = true   //applies to main group only
 
 this.menu_width = 200    //applies to vertical menus
 this.menu_width_items = 96.6 //applies to the width of the items in a horizontal menu



   //Padding Values
  

 this.menu_padding_main = "3,3,1,3"  //top, right, bottom, left
 this.menu_padding_sub = "0,0,0,0"

 this.item_padding_main = "0,0,0,4"
 this.item_padding_sub = "3,0,3,5"

 

   //Border Sizing


 this.menu_border_main = 1
 this.menu_border_sub = 1

 this.item_border_main = 1
 this.item_border_sub = 1



   //Specific Item Setting Examples (change 'X' to appropriate index value)
 


/*---------------------------------------------
Optional Style Sheet Class Name Association
---------------------------------------------*/

//Use the following section to optionally associate menu groups 
//and menu items with existing CSS classes from your site.



   //global class names

 //this.main_menu_class = "myclassname"
 //this.main_items_class = "myclassname"
 //this.main_items_rollover_class = "myclassname"

 //this.sub_menu_class = "myclassname"
 //this.sub_items_class = "myclassname"
 //this.sub_items_rollover_class = "myclassname"


   //specific menu items

 //this.item_classX_X = "myclassname"
 //this.item_rollover_classX_X = "myclassname"



/*---------------------------------------------
Exposed Menu Events - Custom Script Attachment
---------------------------------------------*/


 this.show_menu = ""
 this.hide_menu = ""
 

 //available specific settings


 this.show_menuX = "alert('show id')"
 this.hide_menuX = "alert('hide id')"
 

 //use the following to execute a JavaScript statement for any menu item
 //change 'X' below, to the menu items index number.
 
 this.clickX = "alert('Sample Click Code - Exposed Menu Event')"
 


/*------------------------------------------------
Browser Workarounds
-------------------------------------------------*/


   //Opera 5 & 6 - alternate HTML display (Opera 7 displays menu 100%)

 this.opera_old_display_html = "Please update your opera browser.";



/*---------------------------------------------
Main Menu Group and Items
---------------------------------------------*/


   //Main Menu Group 0

 /*-------------------------------------
 Lance code:  Use the processMenuTree function
 from ls_menubuilder.js to create the items
 for the menu
 --------------------------------------*/
 
 if(icounter<1) {
  var myArray = menu.items.splice(0,7);
  processMenuTree(myArray, this, 0);
  icounter++;
 }
}///////////////////////// END Menu Data ////////////////////
