// 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://history.giants.com/"; dqm__urltarget5 = "_new" //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/community.asp"; //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 = "Public Transportation" dqm__url1_0 = "http://www.giants.com/news/headlines/story.asp?story_id=29244" dqm__subdesc1_1 = "Gameday Live" dqm__url1_1 = "http://www.giants.com/gameday/GamedayLive.asp" dqm__subdesc1_2 = "Schedule" dqm__url1_2 = "http://www.giants.com/gameday/schedule2008.asp" dqm__subdesc1_3 = "Injury Report" dqm__url1_3 = "http://www.giants.com/injuryreport.asp" dqm__subdesc1_4 = "2008 Previous Games" dqm__url1_4 = "http://www.giants.com//gameday/PreviousGames.asp" dqm__subdesc1_5 = "NFL Scores" dqm__url1_5 = "http://www.giants.com/gameday/scores.html" dqm__subdesc1_6 = "NFL Stats" dqm__url1_6 = "http://www.giants.com/gameday/nfl_stats.html" dqm__subdesc1_7 = "Opponents" dqm__url1_7 = "http://www.giants.com/gameday/GiantsRegularSeasonOpponentsfor20042009.html" dqm__subdesc1_8 = "Giants Stadium" dqm__url1_8 = "http://www.giants.com/gameday/GiantsStadium.html" //Sub Menu 2 News dqm__sub_xy2 = "-59,29" dqm__sub_menu_width2 = 130 dqm__subdesc2_0 = "Headlines" dqm__url2_0 = "http://www.giants.com/news/headlines/" dqm__subdesc2_1 = "Transcripts" dqm__url2_1 = "http://www.giants.com/news/transcripts/archive.html" dqm__subdesc2_2 = "New Stadium Website" dqm__url2_2 = "http://www.nyg2010.com" dqm__urltarget2_2 = "_new" dqm__subdesc2_3 = "Giants Stadium LLC Releases" dqm__url2_3 = "http://www.giants.com/news/giants_stadium_llc/archive.asp" //Sub Menu 3 Fan Zone dqm__sub_xy3 = "-78,29" dqm__sub_menu_width3 = 130 dqm__subdesc3_0 = "Construction Cam" dqm__url3_0 = "http://www.giants.com/fan_zone/ConstructionCam.asp" dqm__subdesc3_1 = "Message Boards" dqm__url3_1 = "http://boards.giants.com/" dqm__urltarget3_1 = "_new" dqm__subdesc3_2 = "Chat Room" dqm__url3_2 = "http://www.giants.com/fan_zone/GiantsChatRoom.asp" dqm__urltarget3_2 = "_new" dqm__subdesc3_3 = "Men's Health Program Tip of the Week" dqm__url3_3 = "http://www.giants.com/mtsinai.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 = "Snausages MVP" dqm__url3_6 = "http://www.giants.com/snausages" dqm__subdesc3_7 = "Youth Football Camp" dqm__url3_7 = "http://www.prosportsexperience.com/giants/" dqm__urltarget3_7 = "_new" dqm__subdesc3_8 = "Junior Giants Club" dqm__url3_8 = "http://www.giants.com/juniorgiants/" dqm__urltarget3_8 = "_new" dqm__subdesc3_9 = "Player Websites" dqm__url3_9 = "http://www.giants.com/playerwebsites.asp" dqm__subdesc3_10 = "Home Team Challenge" dqm__url3_10 = "http://football.nfl.com/splash/football/nfl/challenge?nflteam=NYG" dqm__urltarget3_10 = "_new" //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 = "Photo Gallery" dqm__url4_1 = "http://www.giants.com/multimedia/Photos.html" dqm__subdesc4_2 = "Podcast" dqm__url4_2 = "http://www.giants.com/podcast/index.xml" //Sub Menu 5 History dqm__sub_xy5 = "-77,29" dqm__sub_menu_width5 = 130 dqm__subdesc5_0 = "All-New Historical Wiki" dqm__url5_0 = "http://history.giants.com/" dqm__urltarget5_0 = "_new" dqm__subdesc5_1 = "2008 Draft Central" dqm__url5_1 = "http://www.giants.com/2008draftcentral.asp" //Sub Menu 6 Off Field dqm__sub_xy6 = "-78,29" dqm__sub_menu_width6 = 130 dqm__subdesc6_0 = "Community" dqm__url6_0 = "http://www.giants.com/Community.asp" dqm__subdesc6_1 = "Player Development" dqm__url6_1 = "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 = "Public Transportation" dqm__url7_0 = "http://www.giants.com/news/headlines/story.asp?story_id=29244" dqm__subdesc7_1 = "Tickets Information" dqm__url7_1 = "http://www.giants.com/tickets/" dqm__subdesc7_2 = "Giants TicketExhange" dqm__url7_2 = "https://oss.ticketmaster.com/html/home.htmI?l=EN&team=nygiants" dqm__urltarget7_2 = "_new" dqm__subdesc7_3 = "Fan Code of Conduct" dqm__url7_3 = "http://www.giants.com/news/headlines/story.asp?story_id=28170" dqm__subdesc7_4 = "Offsite Parking Info" dqm__url7_4 = "http://www.giants.com/tickets/offsiteparking.asp" dqm__subdesc7_5 = "Onsite Parking Map" dqm__url7_5 = "http://www.giants.com/tickets/onsiteparking.asp" //Sub Menu 8 Store dqm__sub_xy8 = "-85,29" dqm__sub_menu_width8 = 130 dqm__subdesc8_0 = "Giants Jerseys" dqm__url8_0 = "http://www.giantsproshop.com/index.cfm/New_York_Giants_JERSEYS/JERSEYS/c/JERSEYS/gid/56?rs=teamsitenav&rc=jerseys" dqm__urltarget8_0 = "_new" dqm__subdesc8_1 = "Giants Hats" dqm__url8_1 = "http://www.giantsproshop.com/index.cfm/New_York_Giants_HATS/HATS/c/HATS/gid/50?rs=teamsitenav&rc=hats" dqm__urltarget8_1 = "_new" dqm__subdesc8_2 = "Giants Shirts" dqm__url8_2 = "http://www.giantsproshop.com/index.cfm/New_York_Giants_SHIRTS/SHIRTS/c/SHIRTS/gid/51?rs=teamsitenav&rc=shirts" dqm__urltarget8_2 = "_new" dqm__subdesc8_3 = "Giants Mens" dqm__url8_3 = "http://www.giantsproshop.com/index.cfm/New_York_Giants_MEN/MEN/c/MEN/gid/52?rs=teamsitenav&rc=mens" dqm__urltarget8_3 = "_new" dqm__subdesc8_4 = "Giants Womens" dqm__url8_4 = "http://www.giantsproshop.com/index.cfm/New_York_Giants_WOMEN/WOMEN/c/WOMEN/gid/63?rs=teamsitenav&rc=womens" dqm__urltarget8_4 = "_new" dqm__subdesc8_5 = "Giants Kids" dqm__url8_5 = "http://www.giantsproshop.com/index.cfm/New_York_Giants_KIDS/KIDS/c/KIDS/gid/55?rs=teamsitenav&rc=kids" dqm__urltarget8_5 = "_new" dqm__subdesc8_6 = "Giants Collectibles" dqm__url8_6 = "http://www.giantsproshop.com/index.cfm/New_York_Giants_COLLECTIBLES/COLLECTIBLES/c/COLLECTIBLES/gid/57?rs=teamsitenav&rc=collectibles" dqm__urltarget8_6 = "_new" dqm__subdesc8_7 = "Giants Home" dqm__url8_7 = "http://www.giantsproshop.com/index.cfm/New_York_Giants_COLLECTIBLES/Decor/sc/COLLECTIBLES-Decor/nCategoryID/382?rs=teamsitenav&rc=home"