// QuickMenu Pro, Copyright (c) 1998 - 2003, OpenCube Inc. - http://www.opencube.com isIE = ( navigator.userAgent && navigator.userAgent.indexOf("MSIE") >= 0 ); limit_multiple_users = true restrict_access = true sequence = '9x44_5' /*------------------------------------------- Colors, Borders, Dividers, and more... --------------------------------------------*/ dqm__sub_menu_width = 130 //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 = 1 dqm__border_color = "#000000" //Hex color or 'transparent' dqm__menu_bgcolor = "#003067" //Hex color or 'transparent' dqm__hl_bgcolor = "#0f4889" dqm__mouse_off_delay = 10 //defined in milliseconds (activated after mouse stops) dqm__nn4_mouse_off_delay = 10 //defined in milliseconds (activated after leaving sub) /*------------------------------------------- Font settings and margins --------------------------------------------*/ //Font settings dqm__textcolor = "#ffffff" dqm__fontfamily = "Arial" //Any available system font dqm__fontsize = 11 //Defined with pixel sizing dqm__fontsize_ie4 = 9 //Defined with point sizing dqm__textdecoration = "normal" //set to: 'normal', or 'underline' dqm__fontweight = "bold" //set to: 'normal', or 'bold' dqm__fontstyle = "normal" //set to: 'normal', or 'italic' //Rollover font settings dqm__hl_textcolor = "#e5e5e5" dqm__hl_textdecoration = "normal" //set to: 'normal', or 'underline' //Margins and text alignment dqm__text_alignment = "left" //set to: 'left', 'center' or 'right' dqm__margin_top = 3 dqm__margin_bottom = 3 dqm__margin_left = 7 dqm__margin_right = 4 /*------------------------------------------- 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 = "http://assets.giants.com/includes/menu/images/white-arrow.gif" dqm__2nd_icon_rollover0 = "http://assets.giants.com/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 = "none" dqm__sub_item_effect = "none" //Define the effect duration in seconds below. dqm__sub_menu_effect_duration = 0 dqm__sub_item_effect_duration = 0 //Specific settings for various transitions. dqm__effect_pixelate_maxsqare = 0 dqm__effect_iris_irisstyle = "CIRCLE" //CROSS, CIRCLE, PLUS, SQUARE, or STAR dqm__effect_checkerboard_squaresx = 0 dqm__effect_checkerboard_squaresY = 0 dqm__effect_checkerboard_direction = "RIGHT" //UP, DOWN, LEFT, RIGHT //Opacity and drop shadows. dqm__sub_menu_opacity = 100 //1 to 100 dqm__dropshadow_color = "none" //Hex color value or 'none' dqm__dropshadow_offx = 0 //drop shadow width dqm__dropshadow_offy = 0 //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 dqm__os9_ie5mac_offset_X = 0 dqm__os9_ie5mac_offset_Y = 0 dqm__osx_ie5mac_offset_X = 0 dqm__osx_ie5mac_offset_Y = 0 //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. dqm__showmenu_codeX = "status = 'custom show menu function call - menu0'" dqm__hidemenu_codeX = "status = 'custom hide menu function call - menu0'" dqm__clickitem_codeX_X = "alert('custom Function - Menu Item 0_0')" 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") { //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") { //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 Team dqm__rollover_image0 = "http://assets.giants.com/images/_2007/nav/team_off2.gif" dqm__rollover_wh0 = "63,31" dqm__url0 = "http://www.giants.com/team/"; //Main Menu Item 1 Gameday dqm__rollover_image1 = "http://assets.giants.com/images/_2007/nav/gameday_off2.gif" dqm__rollover_wh1 = "89,31" dqm__url1 = "http://www.giants.com/gameday/"; //Main Menu Item 2 News dqm__rollover_image2 = "http://assets.giants.com/images/_2007/nav/news_off2.gif" dqm__rollover_wh2 = "59,31" dqm__url2 = "http://www.giants.com/news/"; //Main Menu Item 3 Fan Zone dqm__rollover_image3 = "http://assets.giants.com/images/_2007/nav/fanzone_off2.gif" dqm__rollover_wh3 = "78,31" dqm__url3 = "http://www.giants.com/fan_zone/"; //Main Menu Item 4 Multimedia dqm__rollover_image4 = "http://assets.giants.com/images/_2007/nav/multimedia_off2.gif" dqm__rollover_wh4 = "90,31" dqm__url4 = "http://www.giants.com/multimedia/"; //Main Menu Item 5 History dqm__rollover_image5 = "http://assets.giants.com/images/_2007/nav/history_off2.gif" dqm__rollover_wh5 = "77,31" dqm__url5 = "http://www.giants.com/history/"; //Main Menu Item 6 Off Field dqm__rollover_image6 = "http://assets.giants.com/images/_2007/nav/community_off.gif" dqm__rollover_wh6 = "78,31" dqm__url6 = "http://www.giants.com/off_field/"; //Main Menu Item 7 Tickets dqm__rollover_image7 = "http://assets.giants.com/images/_2007/nav/tickets_off2.gif" dqm__rollover_wh7 = "69,31" dqm__url7 = "http://www.giants.com/tickets/"; //Main Menu Item 8 Store dqm__rollover_image8 = "http://assets.giants.com/images/_2007/nav/store_off2.gif" dqm__rollover_wh8 = "85,31" dqm__url8 = "http://www.giantsproshop.com/?rc=navigation&rs=giantssite"; /********************************************************************************************** ********************************************************************************************** Sub Menu Structure and Text ********************************************************************************************** **********************************************************************************************/ //Sub Menu 0 Team dqm__sub_xy0 = "-63,29" dqm__sub_menu_width0 = 130 dqm__subdesc0_0 = "Roster" dqm__url0_0 = "http://www.giants.com/team/giants_roster.html" dqm__subdesc0_1 = "Depth Chart" dqm__url0_1 = "http://www.giants.com/team/depth_chart.asp" dqm__subdesc0_2 = "Transactions" dqm__url0_2 = "http://www.giants.com/team/Transactions.html" dqm__subdesc0_3 = "Stats" dqm__url0_3 = "http://www.giants.com/team/giants_stats.html" dqm__subdesc0_4 = "Standings" dqm__url0_4 = "http://www.giants.com/team/standings.html" dqm__subdesc0_5 = "Coaches" dqm__url0_5 = "http://www.giants.com/team/coaches.html" dqm__subdesc0_6 = "Front Office" dqm__url0_6 = "http://www.giants.com/team/front_office.html" //Sub Menu 1 Gameday dqm__sub_xy1 = "-89,29" dqm__sub_menu_width1 = 130 dqm__subdesc1_0 = "Schedule" dqm__url1_0 = "http://www.giants.com/gameday/schedule2008.asp" dqm__subdesc1_1 = "This Week's Game" dqm__url1_1 = "http://www.giants.com/gameday/ThisWeeksGame.html" dqm__subdesc1_2 = "Injury Report" dqm__url1_2 = "http://www.giants.com/gameday/Injuries.html" dqm__subdesc1_3 = "2007 Previous Games" dqm__url1_3 = "http://admin.giants.com//gameday/PreviousGames.asp" dqm__subdesc1_4 = "NFL Scores" dqm__url1_4 = "http://www.giants.com/gameday/scores.html" dqm__subdesc1_5 = "NFL Stats" dqm__url1_5 = "http://www.giants.com/gameday/nfl_stats.html" dqm__subdesc1_6 = "Opponents" dqm__url1_6 = "http://www.giants.com/gameday/GiantsRegularSeasonOpponentsfor20042009.html" dqm__subdesc1_7 = "Giants Stadium" dqm__url1_7 = "http://www.giants.com/gameday/GiantsStadium.html" //Sub Menu 2 News dqm__sub_xy2 = "-59,29" dqm__sub_menu_width2 = 130 dqm__subdesc2_0 = "Eisen Archive" dqm__url2_0 = "http://www.giants.com/news/eisen/index.html" dqm__subdesc2_1 = "Transcripts" dqm__url2_1 = "http://www.giants.com/news/transcripts/archive.html" dqm__subdesc2_2 = "Special Features" dqm__url2_2 = "http://www.giants.com/news/special_features/index.html" dqm__subdesc2_3 = "Press Releases" dqm__url2_3 = "http://www.giants.com/news/press_releases/archive.asp" dqm__subdesc2_4 = "2008 Rookie Mini-Camp" dqm__url2_4 = "http://www.giants.com/rookiecamp.asp" //Sub Menu 3 Fan Zone dqm__sub_xy3 = "-78,29" dqm__sub_menu_width3 = 130 dqm__subdesc3_0 = "Chat Room" dqm__url3_0 = "http://www.giants.com/fan_zone/GiantsChatRoom.asp" dqm__urltarget3_0 = "_new" dqm__subdesc3_1 = "Message Boards" dqm__url3_1 = "http://boards.giants.com/" dqm__urltarget3_1 = "_new" dqm__subdesc3_2 = "New! Giants Arcade" dqm__url3_2 = "http://www.giants.com/fan_zone/GiantsArcade.asp" dqm__subdesc3_3 = "Team Promotions" dqm__url3_3 = "http://admin.giants.com/fan_zone/promotions.asp" dqm__subdesc3_4 = "Giants Extra Points" dqm__url3_4 = "http://www.giantsextrapoints.com" dqm__urltarget3_4 = "_new" dqm__subdesc3_5 = "Fan of the Week" dqm__url3_5 = "http://www.giants.com/fan_zone/FanoftheWeek.html" dqm__subdesc3_6 = "Global Fan Registry" dqm__url3_6 = "http://www.giants.com/fan_zone/fan_registry.html" dqm__subdesc3_7 = "Fantasy Football" dqm__url3_7 = "http://www.giants.com/fan_zone/06HomeTeamChallenge.asp" dqm__subdesc3_8 = "Youth Football Camp" dqm__url3_8 = "http://www.prosportsexperience.com/giants/" dqm__urltarget3_8 = "_new" dqm__subdesc3_9 = "Junior Giants Club" dqm__url3_9 = "http://www.giants.com/juniorgiants/" dqm__urltarget3_9 = "_new" dqm__subdesc3_10 = "2007 Downloads" dqm__url3_10 = "http://www.giants.com/fan_zone/2007Downloads.asp" //Sub Menu 4 Multimedia dqm__sub_xy4 = "-90,29" dqm__sub_menu_width4 = 130 dqm__subdesc4_0 = "Giants TV & Radio" dqm__url4_0 = "http://www.giants.com/multimedia/BroadcastInfo.asp" dqm__subdesc4_1 = "Giants Access Blue" dqm__url4_1 = "http://admin.giants.com/multimedia/AccessBlue.asp" dqm__subdesc4_2 = "Giants Online Show" dqm__url4_2 = "http://www.giants.com/multimedia/GiantsOnline.asp" dqm__subdesc4_3 = "Antonio Pierce Show" dqm__url4_3 = "http://www.giants.com/multimedia/FiercePierceReport.asp" dqm__subdesc4_4 = "centerXchange" dqm__url4_4 = "http://www.giants.com/multimedia/CenterXchange.asp" dqm__subdesc4_5 = "Weekly Fan Q&A" dqm__url4_5 = "http://admin.giants.com/multimedia/FanQA.asp" dqm__subdesc4_6 = "Live from the Press Box" dqm__url4_6 = "http://admin.giants.com/LivefromPressBox.asp" dqm__subdesc4_7 = "Rookie Travel Blog" dqm__url4_7 = "http://www.giants.com/multimedia/RookieTravelBlog.asp" dqm__subdesc4_8 = "Photo Gallery" dqm__url4_8 = "http://www.giants.com/multimedia/Photos.html" dqm__subdesc4_9 = "NEW! Giants Arcade" dqm__url4_9 = "http://www.giants.com/fan_zone/GiantsArcade.asp" dqm__subdesc4_10 = "Podcast" dqm__url4_10 = "http://www.giants.com/podcast/index.xml" //Sub Menu 5 History dqm__sub_xy5 = "-77,29" dqm__sub_menu_width5 = 130 dqm__subdesc5_0 = "2008 Draft Central" dqm__url5_0 = "http://www.giants.com/2008draftcentral.asp" dqm__subdesc5_1 = "Drafts from 1970 - 2006" dqm__url5_1 = "http://www.giants.com/team/HistoricalDrafts.asp" dqm__subdesc5_2 = "Team History" dqm__url5_2 = "http://www.giants.com/history/TeamHistory.html" dqm__subdesc5_3 = "In The Hall" dqm__url5_3 = "http://www.giants.com/history/HallofFamers.html" dqm__subdesc5_4 = "All-Time Roster" dqm__url5_4 = "http://www.giants.com/history/AllTimeRoster.html" dqm__subdesc5_5 = "All-Time Stats" dqm__url5_5 = "http://www.giants.com/history/AllTimeStats.html" dqm__subdesc5_6 = "Championship Games" dqm__url5_6 = "http://www.giants.com/history/ChampionshipGames.html" dqm__subdesc5_7 = "Yearly Results" dqm__url5_7 = "http://www.giants.com/history/YearlyResults.html" //Sub Menu 6 Off Field dqm__sub_xy6 = "-78,29" dqm__sub_menu_width6 = 130 dqm__subdesc6_0 = "Community Relations" dqm__url6_0 = "http://www.giants.com/off_field/CommunityRelations.html" dqm__subdesc6_1 = "Community News" dqm__url6_1 = "http://www.giants.com/news/off_the_field/index.html" dqm__subdesc6_2 = "Player Development" dqm__url6_2 = "http://www.giants.com/off_field/PlayerDevelopment.html" //Sub Menu 7 Tickets dqm__sub_xy7 = "-69,29" dqm__sub_menu_width7 = 130 dqm__subdesc7_0 = "Giants Ticket Exchange" dqm__url7_0 = "https://oss.ticketmaster.com/html/home.htmI?l=EN&team=nygiants" dqm__urltarget7_0 = "_new" dqm__subdesc7_1 = "Tickets Information" dqm__url7_1 = "http://www.giants.com/tickets/" //Sub Menu 8 Store dqm__sub_xy8 = "-85,29" dqm__sub_menu_width8 = 130 dqm__subdesc8_0 = "Online Store" dqm__url8_0 = "http://giantsproshop.com/?rs=teamsite&rc=navigation" dqm__urltarget8_0 = "_new" dqm__subdesc8_1 = "Catalog Request" dqm__url8_1 = "http://giantsproshop.com/main_joinlist.cfm?rs=teamsitenavigation&rc=catreq" dqm__urltarget8_1 = "_new" dqm__subdesc8_2 = "Top 10 Sellers" dqm__url8_2 = "http://giantsproshop.com/main_topproducts.cfm" dqm__urltarget8_2 = "_new"