DQM_Notice = "DHTML QuickMenu, Copyright (c) - 2002, OpenCube Inc. - www.opencube.com"

/* -------------------------------
Custom Functions




getObj_ATM(name) = Used to get an div object from the page.
Has code to support Netscape 7 > and IE 5 >




checkDiv(name, property) = Used to set the visibility property
of an object.




You should never need to modify the code of these function.
To use these function refer to the DQM_showmenu and DQM_hidemenu
variables below.  Use these function to hide and show drop down
form elements.  Remember to add the div tag around your drop down box.




<div id="name"><select ...><option>...</select></div>


---------------------------------*/

function getObj_ATM(name){

	if (document.getElementById){
		if (document.getElementById(name) != null){
			this.obj = document.getElementById(name);
			this.style = document.getElementById(name).style;
			this.found = true;
		}else{
			this.found = false;
		}
	}else if (document.all){
		if (document.all[name] != null){
			this.obj = document.all[name];
			this.style = document.all[name].style;
			this.found = true;
		}else{
			this.found = false;
		}
	}else if (document.layers){
		if (document.layers[name] != null){
			this.obj = document.layers[name];
			this.style = document.layers[name];
			this.found = true;
		}else{
			this.found = false;
		}
	}
}

function checkDiv(name,property){

	var obj = new getObj_ATM(name);
	if (obj.found){
		obj.style.visibility = property;
	}
}


/*---------------------------------------
General Settings
----------------------------------------*/

DQM_sub_menu_width = 153
DQM_sub_xy = "0,0"
   

DQM_codebase = "/script/"
DQM_urltarget = "_self"

DQM_border_width = 1
DQM_divider_height = 1
DQM_border_color = "#000000"
DQM_menu_bgcolor = "#E2E2F2"
DQM_hl_bgcolor = "#CCCCFF"

DQM_mouse_off_delay = 100



/*---------------------------------------
Browser Bug Fixes
----------------------------------------*/
   
DQM_os9_ie5mac_offset_X = 10
DQM_os9_ie5mac_offset_Y = 15

DQM_osx_ie5mac_offset_X = 0
DQM_osx_ie5mac_offset_Y = 0

DQM_ie4mac_offset_X = -8
DQM_ie4mac_offset_Y = -50
   
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."



/*---------------------------------------
Transition Effects (ie5.5 &up)
----------------------------------------*/

DQM_sub_menu_effect = "none"
DQM_sub_item_effect = "none"
DQM_sub_menu_effect_duration = .4
DQM_sub_item_effect_duration = .4

DQM_effect_pixelate_maxsqare = 25
DQM_effect_iris_irisstyle = "CIRCLE"
DQM_effect_checkerboard_squaresx = 14
DQM_effect_checkerboard_squaresY = 14
DQM_effect_checkerboard_direction = "RIGHT"
   
DQM_sub_menu_opacity = 100
DQM_dropshadow_color = "none"
DQM_dropshadow_offx = 5
DQM_dropshadow_offy = 5	



/*---------------------------------------
Font, Margin, and Alignment
----------------------------------------*/

DQM_textcolor = "#000000"
DQM_fontfamily = "Arial"
DQM_fontsize = 11
DQM_fontsize_ie4 = 9
DQM_textdecoration = "normal"
DQM_fontweight = "normal"
DQM_fontstyle = "normal"
DQM_hl_textcolor = "#000000"
DQM_hl_textdecoration = "normal"

DQM_margin_top = 2
DQM_margin_bottom = 3
DQM_margin_left = 5
DQM_margin_right = 4
DQM_text_alignment = "left"



/*---------------------------------------------
Optional event triggered custom function calls
----------------------------------------------*/

// showmenu_code# is for the # index menu item
// checkDiv(name, property)
// name = the id of the div tag
// property = the value of the visibility property.




// In this site:
//  <div id="mydiv"> is for the drop down at the top of a page.
//

DQM_showmenu_code0 = "checkDiv('mydiv', 'hidden')"
DQM_hidemenu_code0 = "checkDiv('mydiv', 'visible')"

//DQM_onload_code = "alert('custom function - onload')"
DQM_onload_code = "if (window.showAlert) { showAlert(); }"

//DQM_showmenu_code0 = "status = 'custom show menu function call - menu0'"
//DQM_showmenu_code1 = "status = 'custom show menu function call - menu1'"
//DQM_hidemenu_code0 = "status = 'custom hide menu function call - menu0'"
//DQM_hidemenu_code1 = "status = 'custom hide menu function call - menu1'"

//DQM_clickitem_code0_0 = "alert('custom Function - Menu Item 0_0')"
//DQM_clickitem_code2_0 = "alert('custom Function - Menu Item 2_0')"



/*---------------------------------------
Relative Positioned Icons
----------------------------------------*/   

//DQM_icon_image0 ="/images/blue1.gif"
//DQM_icon_rollover0 ="/images/blue1.gif"
//DQM_icon_image_wh0 = "1,1"

//DQM_icon_image1 ="/images/arrow.gif"
//DQM_icon_rollover1 ="/images/arrow.gif"
//DQM_icon_image_wh1 = "13,10"



/*---------------------------------------
Absolute positioned Icons
----------------------------------------*/

//DQM_2nd_icon_image0 ="/images/arrow.gif"
//DQM_2nd_icon_rollover0 ="/images/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_text2_0 = "Sample text - Main Menu Item 1, Sub Item 0"	
//DQM_status_text2_0 = "Sample text - Main Menu Item 1, Sub Item 1"	



/*---------------------------------------------
Main Menu Settings
-----------------------------------------------*/
  
DQM_rollover_image0 = "/images/nav-roll-event-info.gif"
DQM_rollover_wh0 = "69,28"
DQM_url0 = "/event-info.shtml";   

DQM_rollover_image1 = "/images/nav-roll-arena-info.gif"
DQM_rollover_wh1 = "69,28"
DQM_url1 = "/arena-info.shtml";

DQM_rollover_image2 = "/images/nav-roll-corporate-info.gif" 
DQM_rollover_wh2 = "91,28"
DQM_url2 = "/corporate-info.shtml"; 

DQM_rollover_image3 = "/images/nav-roll-insiders-club.gif" 
DQM_rollover_wh3 = "86,28"
DQM_url3 = "/insiders-club.shtml";   

DQM_rollover_image4 = "/images/nav-roll-seating-locator.gif" 
DQM_rollover_wh4 = "95,28"
DQM_url4 = "/seating-locator.shtml";   

DQM_rollover_image5 = "/images/nav-roll-contact.gif" 
DQM_rollover_wh5 = "55,28"
DQM_url5 = "/contact-1st-mariner-arena.shtml";   

DQM_rollover_image6 = "/images/nav-roll-promoter-area.gif" 
DQM_rollover_wh6 = "95,28"
DQM_url6 = "/promoters/index.shtml";  
   



/*---------------------------------------------
Sub Menu Settings
-----------------------------------------------*/  


DQM_sub_xy0 = "-69,28"
DQM_sub_menu_width0 = 150
DQM_subdesc0_0 = "Events Calendar"
DQM_subdesc0_1 = "Frequently Asked Questions"
DQM_subdesc0_2 = "Ticket Information"
DQM_subdesc0_3 = "Directions, Parking and Transportation"
DQM_subdesc0_4 = "Accessibility"
DQM_subdesc0_5 = "Lodging and Restaurants"

DQM_icon_index0_0 = 0
DQM_icon_index0_1 = 0
DQM_icon_index0_2 = 0
DQM_icon_index0_3 = 0
DQM_icon_index0_4 = 0
DQM_icon_index0_5 = 0

DQM_url0_0 = "/event-calendar.shtml"
DQM_url0_1 = "/frequently-asked-questions.shtml"
DQM_url0_2 = "/ticket-information.shtml"
DQM_url0_3 = "/directions-parking.shtml"
DQM_url0_4 = "/accessibility.shtml"
DQM_url0_5 = "/lodging-restaurants.shtml"



DQM_sub_xy1 = "-69,28"
DQM_sub_menu_width1 = 126
DQM_subdesc1_0 = "Arena History"
DQM_subdesc1_1 = "Related Links"

DQM_icon_index1_0 = 0
DQM_icon_index1_1 = 0

DQM_url1_0 = "/arena-history.shtml"
DQM_url1_1 = "/related-links.shtml"




DQM_sub_xy2 = "-91,28"
DQM_sub_menu_width2 = 126
DQM_subdesc2_0 = "About SMG Corporation"
DQM_subdesc2_1 = "Job Opportunities"
DQM_subdesc2_2 = "Arena Staff"

DQM_icon_index2_0 = 0
DQM_icon_index2_1 = 0
DQM_icon_index2_2 = 0

DQM_url2_0 = "/about-smg-corporation.shtml"
DQM_url2_1 = "/job-opportunities.shtml"
DQM_url2_2 = "/arena-staff.shtml"
