//Top Menu
function cdd_menu0()
{
/*---------------------------------------------
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)

    //Relative positioned icon images (flow with main menu or sub item text)
	this.rel_icon_image0 = "/menus/images/bullet0.gif";
	this.rel_icon_rollover0 = "/menus/images/bulletover0.gif";
	this.rel_icon_image_wh0 = "12,8";

	//Absolute positioned icon images (coordinate positioned - relative to 
    //right top corner of the menu item displaying the icon.)
	this.abs_icon_image0 = "/menus/images/arrow.gif";
	this.abs_icon_rollover0 = "/menus/images/arrowover.gif";
	this.abs_icon_image_wh0 = "8,10";
	this.abs_icon_image_xy0 = "-9,5";

/*---------------------------------------------
Pointers & Dividers
---------------------------------------------*/

//Pointers are optional, specific settings override the default pointer.
//The x and y offset of each pointer image is relative to the upper left
//corner of the menu group using the pointer.
    this.use_divider_caps = false;
	this.divider_width = 0;
	this.divider_height = 0;

    //Not using any of this*********************
	this.pointer_image = "";
	this.pointer_image_wh = "8,10";
	this.pointer_image_xy = "-9,0";
	
	this.pointer_image_main = "";
	this.pointer_image_wh_main = "11,3";
	this.pointer_image_xy_main = "-7,1";

	this.pointer_image1_2 = "";
	this.pointer_image_wh1_2 = "8,10";
	this.pointer_image_xy1_2 = "122,0";

	this.pointer_image1_3 = "";
	this.pointer_image_wh1_3 = "8,10";
	this.pointer_image_xy1_3 = "102,0";

    //******NOT USING THESE******available specific settings
	this.use_divider_capsX_X = true;
	this.divider_widthX = 20;
	this.divider_heightX = 20;

	this.pointer_imageX = "../sample_images/arrow.gif";
	this.pointer_image_whX = "13,10";
	this.pointer_image_xyX = "10,10";
	//******************************************
	
/*---------------------------------------------
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 = 150;				//applies to vertical menus
	this.menu_width_items = 90;			//applies to items in a horizontal menu

    //Padding Values
  	this.menu_padding_main = "0,0,0,0";		//top, right, bottom, left
	this.menu_padding_sub = "0,0,0,0";

	this.item_padding_main = "3,2,2,3";
	this.item_padding_sub = "3,0,3,0";

    //Border Sizing
	this.menu_border_main = 0;
	this.menu_border_sub = 1;

	this.item_border_main = 0;
	this.item_border_sub = 0;

    //******NOT USING THESE******Specific Item Setting Examples (change 'X' to appropriate index value)
	this.is_horizontalX = true;
	
	this.menu_widthX = 200;
	this.menu_width_itemsX = 100;
	this.menu_width_itemX_X = 100;

	this.menu_padding_subX = "10,5,10,5";
	this.item_padding_mainX = "10,5,10,5";
	this.item_padding_subX_X = "10,5,10,5";

	this.menu_border_subX = 1;
	this.item_border_mainX = 1;
	this.item_border_subX_X = 1;

/*---------------------------------------------
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
	this.item0 = "metals";
	this.url0 = "/category.aspx?cat=0"	
	this.item1 = "findings";
	this.url1 = "/category.aspx?cat=1"	
	this.item2 = "displays";
	this.url2 = "/category.aspx?cat=2"	
	this.item3 = "tools / supplies";
	this.url3 = "/category.aspx?cat=3"
	this.item4 = "stones";
	this.url4 = "/category.aspx?cat=4"
	this.item5 = "beading";
	this.url5 = "/category.aspx?cat=5"
}

//Left Menu
function cdd_menu1()
{
    //Relative positioned icon images (flow with main menu or sub item text)
	this.rel_icon_image0 = "/menus/images/bullet0.gif";
	this.rel_icon_rollover0 = "/menus/images/bulletover0.gif";
	this.rel_icon_image_wh0 = "12,8";

	//Absolute positioned icon images (coordinate positioned - relative to 
    //right top corner of the menu item displaying the icon.)
	this.abs_icon_image0 = "/menus/images/arrow.gif";
	this.abs_icon_rollover0 = "/menus/images/arrowover.gif";
	this.abs_icon_image_wh0 = "8,10";
	this.abs_icon_image_xy0 = "-9,5";

    this.use_divider_caps = false;
	this.divider_width = 0;
	this.divider_height = 0;

    //Not using any of this*********************
	this.pointer_image = "";
	this.pointer_image_wh = "8,10";
	this.pointer_image_xy = "-9,0";
	
	this.pointer_image_main = "";
	this.pointer_image_wh_main = "11,3";
	this.pointer_image_xy_main = "-7,1";

	this.pointer_image1_2 = "";
	this.pointer_image_wh1_2 = "8,10";
	this.pointer_image_xy1_2 = "122,0";

	this.pointer_image1_3 = "";
	this.pointer_image_wh1_3 = "8,10";
	this.pointer_image_xy1_3 = "102,0";

    //******NOT USING THESE******available specific settings
	this.use_divider_capsX_X = true;
	this.divider_widthX = 20;
	this.divider_heightX = 20;

	this.pointer_imageX = "../sample_images/arrow.gif";
	this.pointer_image_whX = "13,10";
	this.pointer_image_xyX = "10,10";
	//******************************************
	
    this.is_horizontal = false;			//applies to all menu groups
	this.is_horizontal_main = false;			//applies to main group only
	
	this.menu_width = 171;				//applies to vertical menus
	this.menu_width_items = 154;			//applies to items in a horizontal menu

    //Padding Values
  	this.menu_padding_main = "0,0,0,0";		//top, right, bottom, left
	this.menu_padding_sub = "0,0,0,0";

	this.item_padding_main = "1,0,1,35";
	this.item_padding_sub = "3,0,3,0";

    //Border Sizing
	this.menu_border_main = 0;
	this.menu_border_sub = 1;

	this.item_border_main = 0;
	this.item_border_sub = 0;

    //******NOT USING THESE******Specific Item Setting Examples (change 'X' to appropriate index value)
	this.is_horizontalX = true;
	
	this.menu_widthX = 200;
	this.menu_width_itemsX = 100;
	this.menu_width_itemX_X = 100;

	this.menu_padding_subX = "10,5,10,5";
	this.item_padding_mainX = "10,5,10,5";
	this.item_padding_subX_X = "10,5,10,5";

	this.menu_border_subX = 1;
	this.item_border_mainX = 1;
	this.item_border_subX_X = 1;

	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')";

    //Opera 5 & 6 - alternate HTML display (Opera 7 displays menu 100%)
	this.opera_old_display_html = "Please update your opera browser.";

    //Main Menu Group 0
	this.item0 = "FAQ";
	this.url0 = "/faq.aspx"	
    this.item1 = "Product Info";
	this.url1 = "/productinfo.aspx"	
	this.item2 = "Payment Options";
	this.url2 = "/payment.aspx"	
	this.item3 = "Shipping Costs";
	this.url3 = "/shipping.aspx"
	this.item4 = "&nbsp;";
	this.item5 = "Order a Catalog";
	this.url5 = "https://www.thunderbirdsupply.com/catalog/catalog.aspx"
	this.item6 = "Tips & Techniques";
	this.url6 = "/tips.aspx"
	//this.item7 = "Shows";
	//this.url7 = "/shows.aspx"
	this.item7 = "Beading Classes";
	this.url7 = "/classes.aspx"
	this.item8 = "Links";
	this.url8 = "/links.aspx"
	this.item9 = "Email Specials";
	this.url9 = "/subscribe.aspx"
	this.item10 = "Promotion Terms";
	this.url10 = "/disclaimers.aspx"
}

//Copyright & Base Path Settings
um0http = 1;

cdd__notice="DHTML Web Menu, (c) 2004 OpenCube Inc., All Rights Reserved, Visit - www.opencube.com";
cdd__codebase="/menus/";	//folder location of script files
cdd__database=""; //folder location of data - settings files (i.e. "data/")

//global settings (applies to all menus)
cdd__activate_onclick = false;
cdd__showhide_delay = 100;
cdd__url_target = "_self";
cdd__url_features = "";			//Sample: "height=200,width=400,status=yes,toolbar=no,menubar=no,location=no"
cdd__display_urls_in_status_bar = true;
cdd__default_statusbar_text = "Thunderbird Supply";

//Web Menu Code (Warning: Do Not Alter!)
if (window.showHelp){b_type = "ie"; if (!window.attachEvent) b_type += "mac";}if (document.createElementNS) b_type = "dom";if (window.opera) b_type = "opera"; qmap1 = "\<\script type=\"text\/javascript\" src=\""; qmap2 = ".js\"\>\<\/script\>";
if(document.layers){document.write(qmap1+cdd__database+"pmenu_ns4_styles"+qmap2);b_type = "ns4";}
if (b_type){document.write(qmap1+cdd__codebase+"pbrowser_"+b_type+qmap2);document.close();}