// QuickMenu Pro, Copyright (c) 1998 - 2003, OpenCube Inc. - http://www.opencube.com limit_multiple_users = true restrict_access = true sequence = '9x44_5' isIE = ( navigator.userAgent && navigator.userAgent.indexOf("MSIE") >= 0 ); /*------------------------------------------- Colors, Borders, Dividers, and more... --------------------------------------------*/ dqm__sub_menu_width = 180 //default sub menu widths dqm__sub_xy = "0,0" //default sub x,y coordinates - defined relative //to the top-left corner of parent image or sub menu dqm__urltarget = "_self" //default URL target: _self, _parent, _new, or "my frame name" dqm__border_width = 1 dqm__divider_height = 0 dqm__border_color = "#0d3692" //Hex color or 'transparent' dqm__menu_bgcolor = "#ffffff" //Hex color or 'transparent' dqm__hl_bgcolor = "#ffffff" dqm__mouse_off_delay = 100 //defined in milliseconds (activated after mouse stops) dqm__nn4_mouse_off_delay = 250 //defined in milliseconds (activated after leaving sub) /*------------------------------------------- Font settings and margins --------------------------------------------*/ //Font settings dqm__textcolor = "#0d3692" dqm__fontfamily = "Verdana" //Any available system font dqm__fontsize = 11 //Defined with pixel sizing dqm__fontsize_ie4 = 10 //Defined with point sizing dqm__textdecoration = "normal" //set to: 'normal', or 'underline' dqm__fontweight = "normal" //set to: 'normal', or 'bold' dqm__fontstyle = "normal" //set to: 'normal', or 'italic' //Rollover font settings dqm__hl_textcolor = "#0d3692" dqm__hl_textdecoration = "underline" //set to: 'normal', or 'underline' //Margins and text alignment dqm__text_alignment = "left" //set to: 'left', 'center' or 'right' dqm__margin_top = 4 dqm__margin_bottom = 4 dqm__margin_left = 12 dqm__margin_right = 10 /*------------------------------------------- Bullet and Icon image library - Unlimited bullet or icon images may be defined below and then associated with any sub menu items within the 'Sub Menu Structure and Text' section of this data file. --------------------------------------------*/ //Optional relative positioned icon images (flow with sub item text) //dqm__icon_image0 = "/includes/menu/images/white-bullet.gif" //dqm__icon_rollover0 = "/includes/menu/images/white-bullet-on.gif" //dqm__icon_image_wh0 = "13,8" //Optional positioned icon images (coordinate poitioned) to indicate //child menu exists dqm__2nd_icon_image0 = "/includes/menu/images/white-arrow.gif" dqm__2nd_icon_rollover0 = "/includes/menu/images/white-arrow.gif" dqm__2nd_icon_image_wh0 = "13,10" dqm__2nd_icon_image_xy0 = "0,4" /*--------------------------------------------- Optional Status Bar Text -----------------------------------------------*/ dqm__show_urls_statusbar = false //dqm__status_text0 = "Sample text - Main Menu Item 0" //dqm__status_text1 = "Sample text - Main Menu Item 1" //dqm__status_text1_0 = "Sample text - Main Menu Item 1, Sub Item 0" //dqm__status_text1_0 = "Sample text - Main Menu Item 1, Sub Item 1" /*------------------------------------------- Internet Explorer Transition Effects --------------------------------------------*/ //Options include - none | fade | pixelate |iris | slide | gradientwipe | checkerboard | radialwipe | randombars | randomdissolve |stretch dqm__sub_menu_effect = "fade" dqm__sub_item_effect = "fade" //Define the effect duration in seconds below. dqm__sub_menu_effect_duration = .2 dqm__sub_item_effect_duration = .2 //Specific settings for various transitions. dqm__effect_pixelate_maxsqare = 25 dqm__effect_iris_irisstyle = "CIRCLE" //CROSS, CIRCLE, PLUS, SQUARE, or STAR dqm__effect_checkerboard_squaresx = 14 dqm__effect_checkerboard_squaresY = 14 dqm__effect_checkerboard_direction = "RIGHT" //UP, DOWN, LEFT, RIGHT //Opacity and drop shadows. dqm__sub_menu_opacity = 100 //1 to 100 dqm__dropshadow_color = "#ffffff" //Hex color value or 'none' dqm__dropshadow_offx = 2 //drop shadow width dqm__dropshadow_offy = 2 //drop shadow height /*------------------------------------------- Browser Bug fixes and Workarounds --------------------------------------------*/ //Mac offset fixes, adjust until sub menus position correctly. dqm__ie4mac_offset_X = -8 dqm__ie4mac_offset_Y = -50 //Netscape 4 resize bug workaround. dqm__nn4_reaload_after_resize = true dqm__nn4_resize_prompt_user = false dqm__nn4_resize_prompt_message = "To reinitialize the navigation menu please click the 'Reload' button." //Set to true if the menu is the only item on the HTML page. dqm__use_opera_div_detect_fix = false //Pre-defined sub menu item heights for the Espial Escape browser. dqm__escape_item_height = 20 dqm__escape_item_height0_0 = 70 dqm__escape_item_height0_1 = 70 /*--------------------------------------------- Exposed menu events ----------------------------------------------*/ //Reference additional onload statements here. //dqm__onload_code = "alert('custom function - onload')" //The 'X' indicates the index number of the sub menu group or item. function autoHide() { if(!isIE) return; for (x = 0; x < document.forms.length; x++) { for (y = 0; y < document.forms[x].elements.length; y++) { if (document.forms[x].elements[y].type.substr(0,6) == "select") { if (document.forms[x].elements[y].name.indexOf('drpField1') >= 0) { document.forms[x].elements[y].style.visibility = 'hidden'; } } } } } function autoShow() { if(!isIE) return; for (x = 0; x < document.forms.length; x++) { for (y = 0; y < document.forms[x].elements.length; y++) { if (document.forms[x].elements[y].type.substr(0,6) == "select") { if (document.forms[x].elements[y].name.indexOf('drpField1') >= 0) { document.forms[x].elements[y].style.visibility = 'visible'; } } } } } /*--------------------------------------------- Specific Sub Menu Settings ----------------------------------------------*/ //The following settings may be defined for specific sub menu groups. //The 'X' represents the index number of the sub menu group. dqm__border_widthX = 10; dqm__divider_heightX = 5; dqm__border_colorX = "#eeeeee"; dqm__menu_bgcolorX = "#666666" dqm__hl_bgcolorX = "#bbbbbb" dqm__hl_textcolorX = "#ffffff" dqm__text_alignmentX = "left" //The following settings may be defined for specific sub menu items. //The 'X' represents the index number of the sub menu item. dqm__hl_subdescX = "custom highlight text" dqm__urltargetX = "_new" /********************************************************************************************** ********************************************************************************************** Main Menu Rollover Images and Links ********************************************************************************************** **********************************************************************************************/ //Main Menu Item 0 dqm__rollover_image0 = "/assets/departments/menu/subject-on.gif" dqm__rollover_wh0 = "163,24" dqm__url0 = "/store/default.aspx?DepartmentId=30"; //Main Menu Item 1 dqm__rollover_image1 = "/assets/departments/menu/state-standards-on.gif" dqm__rollover_wh1 = "163,24" dqm__url1 = "/store/default.aspx?DepartmentId=35"; //Main Menu Item 2 dqm__rollover_image2 = "/assets/departments/menu/product-type-on.gif" dqm__rollover_wh2 = "163,24" dqm__url2 = "/store/default.aspx?DepartmentId=38"; //Main Menu Item 3 dqm__rollover_image3 = "/assets/departments/menu/brand-on.gif" dqm__rollover_wh3 = "163,24" dqm__url3 = "/store/default.aspx?DepartmentId=51"; //Main Menu Item 4 dqm__rollover_image4 = "/assets/departments/menu/celebrations-themes-on.gif" dqm__rollover_wh4 = "163,24" dqm__url4 = "/store/default.aspx?DepartmentId=46"; //Main Menu Item 5 dqm__rollover_image5 = "/assets/departments/menu/price-on.gif" dqm__rollover_wh5 = "163,24" dqm__url5 = "/store/default.aspx?DepartmentId=52"; //Main Menu Item 6 dqm__rollover_image6 = "/assets/departments/menu/best-sellers-on.gif" dqm__rollover_wh6 = "163,24" dqm__url6 = "/store/default.aspx?DepartmentId=47"; //Main Menu Item 7 dqm__rollover_image7 = "/assets/departments/menu/new-products-on.gif" dqm__rollover_wh7 = "163,24" dqm__url7 = "/store/default.aspx?DepartmentId=48"; //Main Menu Item 8 dqm__rollover_image8 = "/assets/departments/menu/clearance-on.gif" dqm__rollover_wh8 = "163,24" dqm__url8 = "/store/default.aspx?DepartmentId=49"; //Main Menu Item 9 dqm__rollover_image9 = "/assets/departments/menu/award-winners-on2.gif" dqm__rollover_wh9 = "163,24" dqm__url9 = "/store/default.aspx?DepartmentId=50"; //Main Menu Item 10 - Continue Shopping dqm__rollover_image10 = "/images/global/btn-continue-shopping.gif"; dqm__rollover_wh10 = "183,26"; dqm__url10 = "/store/"; //Main Menu Item 11 - Continue Shopping dqm__rollover_image11 = "/images/global/btn-continue-shopping.gif"; dqm__rollover_wh11 = "183,26"; dqm__url11 = "/store/"; /********************************************************************************************** ********************************************************************************************** Sub Menu Structure and Text ********************************************************************************************** **********************************************************************************************/ //Sub Menu 0 dqm__sub_xy0 = "-4,-5" dqm__sub_menu_width0 = 180 dqm__subdesc0_0 = "Art, Music & Drama" dqm__url0_0 = "/store/default.aspx?DepartmentId=71" dqm__showmenu_code0 = "autoHide()" dqm__hidemenu_code0 = "autoShow()" dqm__subdesc0_1 = "Basic Skills" dqm__url0_1 = "/store/default.aspx?DepartmentId=32" dqm__showmenu_code0 = "autoHide()" dqm__hidemenu_code0 = "autoShow()" dqm__subdesc0_2 = "Children's Fiction" dqm__url0_2 = "/store/default.aspx?DepartmentId=72" dqm__showmenu_code0 = "autoHide()" dqm__hidemenu_code0 = "autoShow()" dqm__subdesc0_3 = "Christian Education" dqm__url0_3 = "/store/default.aspx?DepartmentId=74" dqm__showmenu_code0 = "autoHide()" dqm__hidemenu_code0 = "autoShow()" dqm__subdesc0_4 = "Early Learning" dqm__url0_4 = "/store/default.aspx?DepartmentId=75" dqm__showmenu_code0 = "autoHide()" dqm__hidemenu_code0 = "autoShow()" dqm__subdesc0_5 = "Encouragement " dqm__url0_5 = "/store/default.aspx?DepartmentId=76" dqm__showmenu_code0 = "autoHide()" dqm__hidemenu_code0 = "autoShow()" dqm__subdesc0_6 = "Health & Safety" dqm__url0_6 = "/store/default.aspx?DepartmentId=77" dqm__showmenu_code0 = "autoHide()" dqm__hidemenu_code0 = "autoShow()" dqm__subdesc0_7 = "Language Arts" dqm__url0_7 = "/store/default.aspx?DepartmentId=78" dqm__showmenu_code0 = "autoHide()" dqm__hidemenu_code0 = "autoShow()" dqm__subdesc0_8 = "Math" dqm__url0_8 = "/store/default.aspx?DepartmentId=79" dqm__showmenu_code0 = "autoHide()" dqm__hidemenu_code0 = "autoShow()" dqm__subdesc0_9 = "Reading" dqm__url0_9 = "/store/default.aspx?DepartmentId=80" dqm__showmenu_code0 = "autoHide()" dqm__hidemenu_code0 = "autoShow()" dqm__subdesc0_10 = "Reference & Non-Fiction" dqm__url0_10 = "/store/default.aspx?DepartmentId=73" dqm__showmenu_code0 = "autoHide()" dqm__hidemenu_code0 = "autoShow()" dqm__subdesc0_11 = "Science" dqm__url0_11 = "/store/default.aspx?DepartmentId=81" dqm__showmenu_code0 = "autoHide()" dqm__hidemenu_code0 = "autoShow()" dqm__subdesc0_12 = "Social Studies" dqm__url0_12 = "/store/default.aspx?DepartmentId=82" dqm__showmenu_code0 = "autoHide()" dqm__hidemenu_code0 = "autoShow()" dqm__subdesc0_13 = "Spanish/Multilingual" dqm__url0_13 = "/store/default.aspx?DepartmentId=83" dqm__showmenu_code0 = "autoHide()" dqm__hidemenu_code0 = "autoShow()" dqm__subdesc0_14 = "Teacher Resources" dqm__url0_14 = "/store/default.aspx?DepartmentId=84" dqm__showmenu_code0 = "autoHide()" dqm__hidemenu_code0 = "autoShow()" dqm__subdesc0_15 = "Test Preparation" dqm__url0_15 = "/store/default.aspx?DepartmentId=85" dqm__showmenu_code0 = "autoHide()" dqm__hidemenu_code0 = "autoShow()" //Sub Menu 1 dqm__sub_xy1 = "-4,-5" dqm__sub_menu_width1 = 180 //Sub Menu 2 dqm__sub_xy2 = "-4,-5" dqm__sub_menu_width2 = 180 dqm__subdesc2_0 = "Award Certificates" dqm__url2_0 = "/store/default.aspx?DepartmentId=328" dqm__showmenu_code2 = "autoHide()" dqm__hidemenu_code2 = "autoShow()" dqm__subdesc2_1 = "Board Books" dqm__url2_1 = "/store/default.aspx?DepartmentId=347" dqm__showmenu_code2 = "autoHide()" dqm__hidemenu_code2 = "autoShow()" dqm__subdesc2_2 = "Classroom Decorations" dqm__url2_2 = "/store/default.aspx?DepartmentId=40" dqm__showmenu_code2 = "autoHide()" dqm__hidemenu_code2 = "autoShow()" dqm__subdesc2_3 = "DVD & Music" dqm__url2_3 = "/store/default.aspx?DepartmentId=41" dqm__showmenu_code2 = "autoHide()" dqm__hidemenu_code2 = "autoShow()" dqm__subdesc2_4 = "Flash Cards" dqm__url2_4 = "/store/default.aspx?DepartmentId=61" dqm__showmenu_code2 = "autoHide()" dqm__hidemenu_code2 = "autoShow()" dqm__subdesc2_5 = "Games" dqm__url2_5 = "/store/default.aspx?DepartmentId=62" dqm__showmenu_code2 = "autoHide()" dqm__hidemenu_code2 = "autoShow()" dqm__subdesc2_6 = "Graphic Novel/Comics" dqm__url2_6 = "/store/default.aspx?DepartmentId=63" dqm__showmenu_code2 = "autoHide()" dqm__hidemenu_code2 = "autoShow()" dqm__subdesc2_7 = "Manipulatives" dqm__url2_7 = "/store/default.aspx?DepartmentId=65" dqm__showmenu_code2 = "autoHide()" dqm__hidemenu_code2 = "autoShow()" dqm__subdesc2_8 = "Picture/Story Books" dqm__url2_8 = "/store/default.aspx?DepartmentId=66" dqm__showmenu_code2 = "autoHide()" dqm__hidemenu_code2 = "autoShow()" dqm__subdesc2_9 = "Posters" dqm__url2_9 = "/store/default.aspx?DepartmentId=67" dqm__showmenu_code2 = "autoHide()" dqm__hidemenu_code2 = "autoShow()" dqm__subdesc2_10 = "Puzzles" dqm__url2_10 = "/store/default.aspx?DepartmentId=68" dqm__showmenu_code2 = "autoHide()" dqm__hidemenu_code2 = "autoShow()" dqm__subdesc2_11 = "Readers" dqm__url2_11 = "/store/default.aspx?DepartmentId=64" dqm__showmenu_code2 = "autoHide()" dqm__hidemenu_code2 = "autoShow()" dqm__subdesc2_12 = "Reference Cards" dqm__url2_12 = "/store/default.aspx?DepartmentId=330" dqm__showmenu_code2 = "autoHide()" dqm__hidemenu_code2 = "autoShow()" dqm__subdesc2_13 = "Resource Books" dqm__url2_13 = "/store/default.aspx?DepartmentId=344" dqm__showmenu_code2 = "autoHide()" dqm__hidemenu_code2 = "autoShow()" dqm__subdesc2_14 = "Stickers" dqm__url2_14 = "/store/default.aspx?DepartmentId=69" dqm__showmenu_code2 = "autoHide()" dqm__hidemenu_code2 = "autoShow()" dqm__subdesc2_15 = "Workbooks" dqm__url2_15 = "/store/default.aspx?DepartmentId=70" dqm__showmenu_code2 = "autoHide()" dqm__hidemenu_code2 = "autoShow()" //Sub Menu 3 dqm__sub_xy3 = "-4,-5" dqm__sub_menu_width3 = 180 dqm__subdesc3_0 = "American Education Publishing" dqm__url3_0 = "/store/brand.aspx?BrandId=12" dqm__showmenu_code3 = "autoHide()" dqm__hidemenu_code3 = "autoShow()" dqm__subdesc3_1 = "Brighter Child" dqm__url3_1 = "/store/brand.aspx?BrandId=1" dqm__showmenu_code3 = "autoHide()" dqm__hidemenu_code3 = "autoShow()" dqm__subdesc3_2 = "Frank Schaffer" dqm__url3_2 = "/store/brand.aspx?BrandId=14" dqm__showmenu_code3 = "autoHide()" dqm__hidemenu_code3 = "autoShow()" dqm__subdesc3_3 = "Gingham Dog Press" dqm__url3_3 = "/store/brand.aspx?BrandId=7" dqm__showmenu_code3 = "autoHide()" dqm__hidemenu_code3 = "autoShow()" dqm__subdesc3_4 = "Ideal" dqm__url3_4 = "/store/brand.aspx?BrandId=17" dqm__showmenu_code3 = "autoHide()" dqm__hidemenu_code3 = "autoShow()" dqm__subdesc3_5 = "In Celebration" dqm__url3_5 = "/store/brand.aspx?BrandId=10" dqm__showmenu_code3 = "autoHide()" dqm__hidemenu_code3 = "autoShow()" dqm__subdesc3_6 = "Instructional Fair" dqm__url3_6 = "/store/brand.aspx?BrandId=2" dqm__showmenu_code3 = "autoHide()" dqm__hidemenu_code3 = "autoShow()" dqm__subdesc3_7 = "Judy" dqm__url3_7 = "/store/brand.aspx?BrandId=15" dqm__showmenu_code3 = "autoHide()" dqm__hidemenu_code3 = "autoShow()" dqm__subdesc3_8 = "LDA" dqm__url3_8 = "/store/brand.aspx?BrandId=11" dqm__showmenu_code3 = "autoHide()" dqm__hidemenu_code3 = "autoShow()" dqm__subdesc3_9 = "Living & Learning" dqm__url3_9 = "/store/brand.aspx?BrandId=13" dqm__showmenu_code3 = "autoHide()" dqm__hidemenu_code3 = "autoShow()" dqm__subdesc3_10 = "Noodlebug" dqm__url3_10 = "/store/brand.aspx?BrandId=19" dqm__showmenu_code3 = "autoHide()" dqm__hidemenu_code3 = "autoShow()" dqm__subdesc3_11 = "Peter Bedrick" dqm__url3_11 = "/store/brand.aspx?BrandId=3" dqm__showmenu_code3 = "autoHide()" dqm__hidemenu_code3 = "autoShow()" dqm__subdesc3_12 = "School Specialty Publishing" dqm__url3_12 = "/store/brand.aspx?BrandId=9" dqm__showmenu_code3 = "autoHide()" dqm__hidemenu_code3 = "autoShow()" dqm__subdesc3_13 = "Spectrum Character" dqm__url3_13 = "/store/brand.aspx?BrandId=5" dqm__showmenu_code3 = "autoHide()" dqm__hidemenu_code3 = "autoShow()" dqm__subdesc3_14 = "Spectrum Starburst" dqm__url3_14 = "/store/brand.aspx?BrandId=8" dqm__showmenu_code3 = "autoHide()" dqm__hidemenu_code3 = "autoShow()" dqm__subdesc3_15 = "Totline" dqm__url3_15 = "/store/brand.aspx?BrandId=16" dqm__showmenu_code3 = "autoHide()" dqm__hidemenu_code3 = "autoShow()" //Sub Menu 4 dqm__sub_xy4 = "-4,-5" dqm__sub_menu_width4 = 180 dqm__subdesc4_0 = "Alphabet" dqm__url4_0 = "/store/default.aspx?DepartmentId=277" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_1 = "Animals" dqm__url4_1 = "/store/default.aspx?DepartmentId=278" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_2 = "Apples" dqm__url4_2 = "/store/default.aspx?DepartmentId=279" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_3 = "Armor of God" dqm__url4_3 = "/store/default.aspx?DepartmentId=280" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_4 = "Back to School" dqm__url4_4 = "/store/default.aspx?DepartmentId=267" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_5 = "Birthdays" dqm__url4_5 = "/store/default.aspx?DepartmentId=282" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_6 = "Black History Month" dqm__url4_6 = "/store/default.aspx?DepartmentId=269" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_7 = "Bugs" dqm__url4_7 = "/store/default.aspx?DepartmentId=284" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_8 = "Character Education" dqm__url4_8 = "/store/default.aspx?DepartmentId=285" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_9 = "Christmas" dqm__url4_9 = "/store/default.aspx?DepartmentId=286" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_10 = "Dinosaurs" dqm__url4_10 = "/store/default.aspx?DepartmentId=287" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_11 = "Farm Animals" dqm__url4_11 = "/store/default.aspx?DepartmentId=289" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_12 = "Fruit of the Spirit" dqm__url4_12 = "/store/default.aspx?DepartmentId=290" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_13 = "Funtatstic Frogs" dqm__url4_13 = "/store/default.aspx?DepartmentId=291" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_14 = "Health" dqm__url4_14 = "/store/default.aspx?DepartmentId=323" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_15 = "Holiday Gift Suggestions" dqm__url4_15 = "/store/default.aspx?DepartmentId=346" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_16 = "Holidays" dqm__url4_16 = "/store/default.aspx?DepartmentId=270" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_17 = "Human Body" dqm__url4_17 = "/store/default.aspx?DepartmentId=293" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_18 = "Money" dqm__url4_18 = "/store/default.aspx?DepartmentId=296" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_19 = "Mr. Wiggle" dqm__url4_19 = "/store/default.aspx?DepartmentId=297" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_20 = "Music" dqm__url4_20 = "/store/default.aspx?DepartmentId=299" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_21 = "Noah's Ark" dqm__url4_21 = "/store/default.aspx?DepartmentId=300" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_22 = "Ocean" dqm__url4_22 = "/store/default.aspx?DepartmentId=301" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_23 = "Patriotic" dqm__url4_23 = "/store/default.aspx?DepartmentId=271" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_24 = "Protect the Earth" dqm__url4_24 = "/store/default.aspx?DepartmentId=272" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_25 = "Rain Forest" dqm__url4_25 = "/store/default.aspx?DepartmentId=303" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_26 = "Seasons" dqm__url4_26 = "/store/default.aspx?DepartmentId=304" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_27 = "Solar System" dqm__url4_27 = "/store/default.aspx?DepartmentId=305" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_28 = "Spanish" dqm__url4_28 = "/store/default.aspx?DepartmentId=306" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_29 = "Sports" dqm__url4_29 = "/store/default.aspx?DepartmentId=307" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_30 = "St. Patrick's Day" dqm__url4_30 = "/store/default.aspx?DepartmentId=308" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_31 = "Teddy Bears" dqm__url4_31 = "/store/default.aspx?DepartmentId=309" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_32 = "Teeth" dqm__url4_32 = "/store/default.aspx?DepartmentId=275" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_33 = "Ten Commandments" dqm__url4_33 = "/store/default.aspx?DepartmentId=310" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_34 = "Things That Go" dqm__url4_34 = "/store/default.aspx?DepartmentId=313" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_35 = "Time" dqm__url4_35 = "/store/default.aspx?DepartmentId=312" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_36 = "Valentines Day" dqm__url4_36 = "/store/default.aspx?DepartmentId=314" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" dqm__subdesc4_37 = "Zoo Animals" dqm__url4_37 = "/store/default.aspx?DepartmentId=315" dqm__showmenu_code4 = "autoHide()" dqm__hidemenu_code4 = "autoShow()" //Sub Menu 5 dqm__sub_xy5 = "-4,-5" dqm__sub_menu_width5 = 180 //Sub Menu 6 dqm__sub_xy6 = "-4,-5" dqm__sub_menu_width6 = 180 //Sub Menu 7 dqm__sub_xy7 = "-4,-5" dqm__sub_menu_width7 = 180 //Sub Menu 8 dqm__sub_xy8 = "-4,-5" dqm__sub_menu_width8 = 180 //Sub Menu 9 dqm__sub_xy9 = "-4,-5" dqm__sub_menu_width9 = 180