
//  QuickMenu Pro, Copyright (c) 1998 - 2003, OpenCube Inc. - http://www.opencube.com
//  
//
//  QuickMenu Pro is Compatible With....
//
//      IE4, IE5.x, IE6 (Win 95, 98, ME, 2000, NT, XP)
//      IE4, IE5.x, &up (Mac)
//      IE4 & up (other platforms)
//      NS4.x (All Platforms)
//      NS5/6.x (All Platforms)
//      NS7 (All Platforms)
//      Opera 5,6,7 (All Platforms)
//      Mozilla 0.6 & up (All Platforms)
//      Konqueror 2.2 & up (Linux)
//      Espial Escape 4.x & up (All Platforms)
//      Ice Browser 5.x & up (All Platforms)
//      Safari 1.0 (Mac only browser)
//      Degrades gracefully in older browsers 
//
//  
//  To customize QuickMenu Pro open this file in a simple text 
//  editor (Notepad or similar). Modify and add parameters (all 
//  customizable parameters start with 'dqm__'), save this file,
//  and open 'sample.htm' in a browser to view your menu. View
//  the source for sample.htm for information on connecting 
//  sub menus to HTML images or build your page around the
//  included sample.htm file.
//
//  QuickMenu conditionally loads the necessary JavaScript
//  files (.js) depending on the browser and platform the user
//  is viewing the menu on. The total file size for each
//  browser / platform scenario is no larger than 12K.
//
//  This sample data file contains comments and help information
//  to assist in the initial customization of your drop down 
//  menu. If you base your implementation on this documented template
//  we recommend the removal of the comments before using on the web, as 
//  to optimize the overall file size and load time of the menu for 
//  the end user.  With the comments removed this sample data files
//  size may be reduced by as much as 50%. Note: To simplify comment 
//  removal there is a uncommented version of this sample template
//  offered in the 'samples' folder.
//
//
//  NOTE: Parameters prefixed with '//' are commented out,
//        delete the '//' to activate the parameter. 
//
//        Commenting out required parameters will cause errors.
//
//        Text values, except TRUE and FALSE statements, must be
//        enclosed by double quotes (").
//  
//        Each parameter value should appear on its own line.
//
//        This data file may also be placed within your HTML page
//        by enclosing between JavaScript tags.
//
//        Due to browser limitations, DHTML menus will not appear
//        on top of Flash objects (unless the flash objects 'wmode'
//        parameter is set to transparent, however this may be buggy), 
//        across frames, or over certain form field elements. A hide 
//        and show workaround for form fields is included with this menu
//        (see the FAQ for additional information).         



/*-------------------------------------------
Colors, Borders, Dividers, and more...
--------------------------------------------*/
code0 = 1400

code1 = 1803

sequence = '9x44_5'



	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 = 0

	dqm__border_color = "#cccccc"		//Hex color or 'transparent'
	dqm__menu_bgcolor = "#000000"		//Hex color or 'transparent'
	dqm__hl_bgcolor = "#660000"		

	dqm__mouse_off_delay = 150		//defined in milliseconds (activated after mouse stops)
	dqm__nn4_mouse_off_delay = 500		//defined in milliseconds (activated after leaving sub)


/*-------------------------------------------
Font settings and margins
--------------------------------------------*/
   

    //Font settings

	dqm__textcolor = "#ffffff"
	dqm__fontfamily = "Verdana"		//Any available system font     
	dqm__fontsize = 9			//Defined with pixel sizing  	
	dqm__fontsize_ie4 = 9			//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 = "#ffffff"
	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 = 2
	dqm__margin_bottom = 3
	dqm__margin_left = 5
	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.
--------------------------------------------*/


    //Relative positioned icon images (flow with sub item text)

	dqm__icon_image0 = "../../menu/images/bullet.gif"
	dqm__icon_rollover0 = "../../menu/images/bullet_hl.gif"
	dqm__icon_image_wh0 = "13,8"

	

    //Absolute positioned icon images (coordinate poitioned)

	dqm__2nd_icon_image0 = "../../menu/images/arrow.gif"
	dqm__2nd_icon_rollover0 = "../../menu/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_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 = 1
	dqm__sub_item_effect_duration = 1


    //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 = "none"			//Hex color value or 'none'
	dqm__dropshadow_offx = 5			//drop shadow width
	dqm__dropshadow_offy = 5			//drop shadow height



/*-------------------------------------------
Browser Bug fixes and Workarounds
--------------------------------------------*/


    //Mac offset fixes, adjust until sub menus position correctly.
   
	dqm__os9_ie5mac_offset_X = 10
	dqm__os9_ie5mac_offset_Y = 15

	dqm__osx_ie5mac_offset_X = 10
	dqm__osx_ie5mac_offset_Y = 15

	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."
   

    //Opera 5 & 6, set to true if the menu is the only item on the HTML page.

	dqm__use_opera_div_detect_fix = true


    //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.
    //The 'X_X' indicates the index number of the sub menu 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')"



/*---------------------------------------------
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 = "#0000ff";     
	dqm__menu_bgcolorX = "#ff0000"
	dqm__hl_bgcolorX = "#00ff00"
	dqm__hl_textcolorX = "#ff0000"
	dqm__text_alignmentX = "left"


    //The following settings may be defined for specific sub menu items.
    //The 'X_X' represents the index number of the sub menu item.

	dqm__hl_subdescX_X = "custom highlight text"
	dqm__urltargetX_X = "_new"




/**********************************************************************************************
**********************************************************************************************

                           Main Menu Rollover Images and Links  

**********************************************************************************************
**********************************************************************************************/

 //Main Menu Item 0

	dqm__rollover_image0 = "../../../spanish/menu/images/artistshl.gif" 
	dqm__rollover_wh0 = "93,31"
	//dqm__url0 = "my_url.html";   


    //Main Menu Item 1

	dqm__rollover_image1 = "../../../spanish/menu/images/newshl.gif" 
	dqm__rollover_wh1 = "82,31"
	//dqm__url1 = "my_url.html";  

    //Main Menu Item 2

	dqm__rollover_image2 = "../../../spanish/menu/images/tourhl.gif"
	dqm__rollover_wh2 = "54,31"
	//dqm__url2 = "my_url.html";   


    //Main Menu Item 3

	dqm__rollover_image3 = "../../../spanish/menu/images/storehl.gif"
	dqm__rollover_wh3 = "68, 31"
	//dqm__url3 = "my_url.html";


    //Main Menu Item 4

	dqm__rollover_image4 = "../../../spanish/menu/images/mp3hl.gif" 
	dqm__rollover_wh4 = "43,31"
	//dqm__url4 = "my_url.html";   


    //Main Menu Item 5

	dqm__rollover_image5 = "../../../spanish/menu/images/videohl.gif" 
	dqm__rollover_wh5 = "55,31"
	//dqm__url5 = "my_url.html";   

    //Main Menu Item 6

	dqm__rollover_image6 = "../../../spanish/menu/images/radiohl.gif"
	dqm__rollover_wh6 = "55, 31"
	//dqm__url6 = "my_url.html";   


    //Main Menu Item 7

	dqm__rollover_image7 = "../../../spanish/menu/images/faqhl.gif"
	dqm__rollover_wh7 = "40,31"
	//dqm__url7 = "my_url.html";


    //Main Menu Item 8

	dqm__rollover_image8 = "../../../spanish/menu/images/linkshl.gif" 
	dqm__rollover_wh8 = "53,31"
	//dqm__url8 = "my_url.html";   


    //Main Menu Item 9

	dqm__rollover_image9 = "../../../spanish/menu/images/extrashl.gif" 
	dqm__rollover_wh9 = "77,31"
	//dqm__url9 = "my_url.html";    




     //Main Menu Item 10

	dqm__rollover_image10 = "../../../spanish/menu/images/aboutushl.gif"
	dqm__rollover_wh10 = "98, 31"
	//dqm__url10= "my_url.html";


  




/**********************************************************************************************
**********************************************************************************************

                              Sub Menu Structure and Text  

**********************************************************************************************
**********************************************************************************************/
   
   


 //Sub Menu 0

	dqm__sub_xy0 = "-80,22"
	dqm__sub_menu_width0 = 80

	dqm__subdesc0_0 = "A - D"
	dqm__subdesc0_1 = "E - K"
	dqm__subdesc0_2 = "L - R"
	dqm__subdesc0_3 = "S - T"
	dqm__subdesc0_4 = "U - Z"
	
	
	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__2nd_icon_index0_0 = 0
	dqm__2nd_icon_index0_1 = 0
    dqm__2nd_icon_index0_2 = 0
	dqm__2nd_icon_index0_3 = 0
    dqm__2nd_icon_index0_4 = 0
	
	
   
 //Sub Menu 0_0

	dqm__sub_xy0_0 = "-4,2"
	dqm__sub_menu_width0_0 = 180

	dqm__subdesc0_0_0 = "3"
	dqm__subdesc0_0_1 = "THE ABSENCE"
	dqm__subdesc0_0_2 = "AEON"
	dqm__subdesc0_0_3 = "AMON AMARTH"
	dqm__subdesc0_0_4 = "ANCIENT"
	dqm__subdesc0_0_5 = "ANGEL BLAKE"
	dqm__subdesc0_0_6 = "APIARY"
    dqm__subdesc0_0_7 = "JOHN ARCH"
	dqm__subdesc0_0_8 = "ARMORED SAINT"
	dqm__subdesc0_0_9 = "AS I LAY DYING"
	dqm__subdesc0_0_10 = "BEYOND THE EMBRACE"
    dqm__subdesc0_0_11 = "THE BLACK DAHLIA MURDER"
	dqm__subdesc0_0_12 = "BOLT THROWER"
	dqm__subdesc0_0_13 = "BORN FROM PAIN"
	dqm__subdesc0_0_14 = "BRAINSTORM"
    dqm__subdesc0_0_15 = "CALLENISH CIRCLE"
	dqm__subdesc0_0_16 = "CANNIBAL CORPSE"
	dqm__subdesc0_0_17 = "CATARACT"
	dqm__subdesc0_0_18 = "CATTLE DECAPITATION"
	dqm__subdesc0_0_19 = "CELLADOR"
   	dqm__subdesc0_0_20 = "CRADLE OF FILTH"
	dqm__subdesc0_0_21 = "THE CROWN"
	dqm__subdesc0_0_22 = "DEMIRICOUS"
 	dqm__subdesc0_0_23 = "DISILLUSION"
	
    dqm__icon_index0_0_0 = 0
	dqm__icon_index0_0_1 = 0
	dqm__icon_index0_0_2 = 0
	dqm__icon_index0_0_3 = 0
    dqm__icon_index0_0_4 = 0
	dqm__icon_index0_0_5 = 0
	dqm__icon_index0_0_6 = 0
	dqm__icon_index0_0_7 = 0
    dqm__icon_index0_0_8 = 0
	dqm__icon_index0_0_9 = 0
	dqm__icon_index0_0_10 = 0
	dqm__icon_index0_0_11 = 0
    dqm__icon_index0_0_12 = 0
	dqm__icon_index0_0_13 = 0
	dqm__icon_index0_0_14 = 0
	dqm__icon_index0_0_15 = 0
    dqm__icon_index0_0_16 = 0
	dqm__icon_index0_0_17 = 0
	dqm__icon_index0_0_18 = 0
	dqm__icon_index0_0_19 = 0
	dqm__icon_index0_0_20= 0
	dqm__icon_index0_0_21= 0
	dqm__icon_index0_0_22= 0
	dqm__icon_index0_0_23= 0

		
	dqm__url0_0_0 = "../../../spanish/bands/3/index2005.html"
	dqm__url0_0_1 = "../../../spanish/bands/the_absence/index2005.html"
	dqm__url0_0_2 = "../../../spanish/bands/aeon/index2006.html"
	dqm__url0_0_3 = "../../../spanish/bands/Amon_Amarth/index2005.html"
	dqm__url0_0_4 = "../../../spanish/bands/ancient/index2005.html"
	dqm__url0_0_5 = "../../../spanish/bands/angel_blake/index2006.html"
    dqm__url0_0_6 = "../../../spanish/bands/apiary/index2006.html"
	dqm__url0_0_7 = "../../../spanish/bands/john_arch/index2005.html"
	dqm__url0_0_8 = "../../../spanish/bands/armored_saint/index2005.html"
	dqm__url0_0_9 = "../../../spanish/bands/as_i_lay_dying/index2005.html"
	dqm__url0_0_10 = "../../../spanish/bands/beyond_the_embrace/index2005.html"
	dqm__url0_0_11 = "../../../spanish/bands/BDM/index2005.html"
	dqm__url0_0_12 = "../../../spanish/bands/Bolt_Thrower/index2005.html"
	dqm__url0_0_13 = "../../../spanish/bands/born_from_pain/index2005.html"
    dqm__url0_0_14 = "../../../spanish/bands/brainstorm/index2005.html"
	dqm__url0_0_15 = "../../../spanish/bands/callenish_circle/index2005.html"
	dqm__url0_0_16 = "../../../spanish/bands/cannibal_corpse/index2005.html"
	dqm__url0_0_17 = "../../../spanish/bands/cataract/index2005.html"
	dqm__url0_0_18 = "../../../spanish/bands/cattle_decapitation/index2005.html"
	dqm__url0_0_19 = "../../../spanish/bands/cellador/index2005.html"
	dqm__url0_0_20 = "../../../spanish/bands/Cradle_Of_Filth/index2005.html"
    dqm__url0_0_21 = "../../../spanish/bands/The_Crown/index2005.html" 
	dqm__url0_0_22 = "../../../spanish/bands/demiricous/index2005.html"
	dqm__url0_0_23 = "../../../spanish/bands/disillusion/index2005.html"
	
//Sub Menu 0_1
	
    dqm__sub_xy0_1 = "-4,2"
	dqm__sub_menu_width0_1 = 180
	dqm__subdesc0_1_0 = "FALCONER"
	dqm__subdesc0_1_1 = "FATES WARNING"
	dqm__subdesc0_1_2 = "FLESHCRAWL"
	dqm__subdesc0_1_3 = "FOREVER IN TERROR"	
 	dqm__subdesc0_1_4 = "FRAGMENTS OF UNBECOMING"
	dqm__subdesc0_1_5 = "FROM A SECOND STORY WINDOW"
	dqm__subdesc0_1_6 = "GAZA"
	dqm__subdesc0_1_7 = "ED GEIN"
	dqm__subdesc0_1_8 = "GOATWHORE"
	dqm__subdesc0_1_9 = "GOD DETHRONED"
    dqm__subdesc0_1_10 = "GOREROTTED"
	dqm__subdesc0_1_11 = "GWAR"
	dqm__subdesc0_1_12 = "IF HOPE DIES"
	dqm__subdesc0_1_13 = "I KILLED DTHE PROM QUEEN"
	dqm__subdesc0_1_14 = "IMPIOUS"
	dqm__subdesc0_1_15 = "IN BATTLE"
	dqm__subdesc0_1_16 = "INCAPACITY"
    dqm__subdesc0_1_17 = "INTO THE MOAT"
	dqm__subdesc0_1_18 = "KING DIAMOND"
    dqm__subdesc0_1_19 = "KING'S X"
	
	dqm__icon_index0_1_0 = 0
	dqm__icon_index0_1_1 = 0
	dqm__icon_index0_1_2 = 0
	dqm__icon_index0_1_3 = 0
    dqm__icon_index0_1_4 = 0
	dqm__icon_index0_1_5 = 0
	dqm__icon_index0_1_6 = 0
	dqm__icon_index0_1_7 = 0
    dqm__icon_index0_1_8 = 0
	dqm__icon_index0_1_9 = 0
	dqm__icon_index0_1_10 = 0
	dqm__icon_index0_1_11 = 0
	dqm__icon_index0_1_12 = 0
 	dqm__icon_index0_1_13 = 0
	dqm__icon_index0_1_14 = 0	
	dqm__icon_index0_1_15 = 0
	dqm__icon_index0_1_16 = 0
	dqm__icon_index0_1_17 = 0
	dqm__icon_index0_1_18 = 0
	dqm__icon_index0_1_19 = 0
	
	  	
	dqm__url0_1_0 = "../../../spanish/bands/falconer/index2005.html"
	dqm__url0_1_1 = "../../../spanish/bands/Fates_Warning/index2005.html"
    dqm__url0_1_2 = "../../../spanish/bands/fleshcrawl/index2005.html"
	dqm__url0_1_3 = "../../../spanish/bands/forever_in_terror/index2006.html"
	dqm__url0_1_4 = "../../../spanish/bands/fragments_of_unbecoming/index2005.html"
	dqm__url0_1_5 = "http://www.blackmarketactivities.com/label/bands/fassw.html"
	dqm__url0_1_6 = "../../../spanish/bands/gaza/index2006.html"
	dqm__url0_1_7 = "../../../spanish/bands/ed_gein/index2005.html"
	dqm__url0_1_8 = "../../../spanish/bands/goatwhore/index2005.html"	
    dqm__url0_1_9 = "../../../spanish/bands/God_Dethroned/index2005.html"
	dqm__url0_1_10 = "../../../spanish/bands/gorerotted/index2005.html"
	dqm__url0_1_11 = "../../../spanish/bands/GWAR/index2005.html"
   	dqm__url0_1_12 = "http://www.ironcladrecordings.com/_new/bio.php?artist=ihd"
	dqm__url0_1_13 = "../../../spanish/bands/i_killed_the_prom_queen/index2006.html"
	dqm__url0_1_14 = "../../../spanish/bands/impious/index2005.html"
	dqm__url0_1_15 = "../../../spanish/bands/in_battle/index2005.html"
    dqm__url0_1_16 = "../../../spanish/bands/incapacity/index2005.html"
	dqm__url0_1_17 = "../../../spanish/bands/into_the_moat/index2005.html"
    dqm__url0_1_18 = "../../../spanish/bands/King_Diamond/index2005.html"
	dqm__url0_1_19 = "../../../spanish/bands/Kings_X/index2005.html"
	
//Sub Menu 0_2
	
    dqm__sub_xy0_2 = "-4,2"
	dqm__sub_menu_width0_2 = 180
   
    dqm__subdesc0_2_0 = "LAMB OF GOD"
	dqm__subdesc0_2_1 = "LIZZY BORDEN"
	dqm__subdesc0_2_2 = "MACHINEMADE GOD"
	dqm__subdesc0_2_3 = "MANOWAR"
    dqm__subdesc0_2_4 = "MERCYFUL FATE"
	dqm__subdesc0_2_5 = "METAL CLASSICS"
	dqm__subdesc0_2_6 = "MIDDIAN"
	dqm__subdesc0_2_7 = "NEAERA"
	dqm__subdesc0_2_8 = "NEAL MORSE"
	dqm__subdesc0_2_9 = "THE OCEAN"
	dqm__subdesc0_2_10 = "PARIA"
	dqm__subdesc0_2_11 = "PATHS OF POSSESSION"
	dqm__subdesc0_2_12 = "PHOENIX MOURNING"
	dqm__subdesc0_2_13 = "PRIMORDIAL"
	dqm__subdesc0_2_14 = "PSYOPUS"
	dqm__subdesc0_2_15 = "THE RED CHORD"
	
  
	
	dqm__icon_index0_2_0 = 0
	dqm__icon_index0_2_1 = 0
	dqm__icon_index0_2_2 = 0
	dqm__icon_index0_2_3 = 0
    dqm__icon_index0_2_4 = 0
	dqm__icon_index0_2_5 = 0
	dqm__icon_index0_2_6 = 0
	dqm__icon_index0_2_7 = 0
   	dqm__icon_index0_2_8 = 0
	dqm__icon_index0_2_9 = 0
	dqm__icon_index0_2_10 = 0
	dqm__icon_index0_2_11 = 0
	dqm__icon_index0_2_12 = 0
	dqm__icon_index0_2_13 = 0
	dqm__icon_index0_2_14 = 0
	dqm__icon_index0_2_15 = 0
			
  
	dqm__url0_2_0 = "../../../spanish/bands/LambOfGod/index2005.html"
	dqm__url0_2_1 = "../../../spanish/bands/Lizzy_Borden/index2005.html"
	dqm__url0_2_2 = "../../../spanish/bands/machinemade_god/index2005.html"
	dqm__url0_2_3 = "../../../spanish/bands/manowar/index2005.html"
	dqm__url0_2_4 = "../../../spanish/bands/Mercyful_Fate/index2005.html"
	dqm__url0_2_5 = "http://www.metalblade.com/bands/Metal_Classics/index2004.html"
	dqm__url0_2_6 = "../../../spanish/bands/middian/index2006.html"
    dqm__url0_2_7 = "../../../spanish/bands/neaera/index2005.html"
    dqm__url0_2_8 = "http://www.nealmorse.com"
	dqm__url0_2_9 = "../../../spanish/bands/the_ocean/index2005.html"
	dqm__url0_2_10 = "http://www.blackmarketactivities.com/label/bands/paria.html"
	dqm__url0_2_11 = "../../../spanish/bands/paths_of_possession/index2005.html"
	dqm__url0_2_12 = "../../../spanish/bands/phoenix_mourning/index2006.html"
	dqm__url0_2_13 = "../../../spanish/bands/primordial/index2005.html"
	dqm__url0_2_14 = "http://www.blackmarketactivities.com/label/bands/psyopus.html"
 	dqm__url0_2_15 = "../../../spanish/bands/the_red_chord/index2005.html"


    
//Sub Menu 0_3  
	
    dqm__sub_xy0_3 = "-4,2"
	dqm__sub_menu_width0_3 = 180
    
    dqm__subdesc0_3_0 = "SHINING FURY"
	dqm__subdesc0_3_1 = "SINCE THE FLOOD"
	dqm__subdesc0_3_2 = "SIX FEET UNDER"
	dqm__subdesc0_3_3 = "SPOCK'S BEARD"
	dqm__subdesc0_3_4 = "STARWOOD"
   	dqm__subdesc0_3_5 = "SYMPHORCE"
	dqm__subdesc0_3_6 = "TORCHBEARER"
	dqm__subdesc0_3_7 = "TORTURE KILLER"
	dqm__subdesc0_3_8 = "TRANSATLANTIC"

	
	
	dqm__icon_index0_3_0 = 0
	dqm__icon_index0_3_1 = 0
	dqm__icon_index0_3_2 = 0
	dqm__icon_index0_3_3 = 0
    dqm__icon_index0_3_4 = 0
	dqm__icon_index0_3_5 = 0
	dqm__icon_index0_3_6 = 0
	dqm__icon_index0_3_7 = 0
	dqm__icon_index0_3_8 = 0

	dqm__url0_3_0 = "../../../spanish/bands/shining_fury/index2005.html"
	dqm__url0_3_1 = "../../../spanish/bands/since_the_flood/index2006.html"
	dqm__url0_3_2 = "../../../spanish/bands/six_feet_under/index2005.html"
    dqm__url0_3_3 = "../../../spanish/bands/Spocks_Beard/index2005.html"
    dqm__url0_3_4 = "../../../spanish/bands/starwood/index2005.html" 	
	dqm__url0_3_5 = "../../../spanish/bands/symphorce/index2005.html"
	dqm__url0_3_6 = "../../../spanish/bands/torchbearer/index2005.html"
	dqm__url0_3_7 = "../../../spanish/bands/torture_killer/index2006.html"
	dqm__url0_3_8 = "../../../spanish/bands/transatlantic/index2005.html"


//Sub Menu 0_4  
	
    dqm__sub_xy0_4 = "-4,2"
	dqm__sub_menu_width0_4 = 180
    dqm__subdesc0_4_0 = "UNEARTH"
    dqm__subdesc0_4_1 = "VADER"
 	dqm__subdesc0_4_2 = "VOMITORY"
	dqm__subdesc0_4_3 = "WINTER SOLSTICE"
	dqm__subdesc0_4_4 = "YOB"
	
	dqm__icon_index0_4_0 = 0
	dqm__icon_index0_4_1 = 0
	dqm__icon_index0_4_2 = 0
	dqm__icon_index0_4_3 = 0
	dqm__icon_index0_4_4 = 0

           
	dqm__url0_4_0 = "../../../spanish/bands/unearth/index2005.html"
    dqm__url0_4_1 = "../../../spanish/bands/Vader/index2005.html"
	dqm__url0_4_2 = "../../../spanish/bands/vomitory/index2005.html"
	dqm__url0_4_3 = "../../../spanish/bands/winter_solstice/index2005.html"
	dqm__url0_4_4 = "../../../spanish/bands/yob/index2005.html"
	
         
//Sub Menu 1

	dqm__sub_xy1 = "-56,22"
	dqm__sub_menu_width1 = 140

	dqm__subdesc1_0 = "NORTEAMÉRICA" 
	dqm__subdesc1_1 = "EUROPA"
	dqm__subdesc1_2 = "NUEVAS CONTRATACIONES"
	
	dqm__icon_index1_0 = 0
	dqm__icon_index1_1 = 0
	dqm__icon_index1_2 = 0
	
	dqm__url1_0 = "../../../spanish/newsna2004.html"
	dqm__url1_1 = "../../../spanish/newseuro2004.html"
	dqm__url1_2 = "../../newssign2004.html"
	
	
//Sub Menu 2

	dqm__sub_xy2 = "-50,22"
	dqm__sub_menu_width2 = 140

	dqm__subdesc2_0 = "NORTEAMÉRICA"
	dqm__subdesc2_1 = "EUROPA"
	dqm__subdesc2_2 = "JAPAN"
	dqm__subdesc2_3 = "AUSTRALIA"
	
	
	dqm__icon_index2_0 = 0
	dqm__icon_index2_1 = 0
	dqm__icon_index2_2 = 0
	dqm__icon_index2_3 = 0
	
	
	dqm__url2_0 = "../../../toursna.php"
	dqm__url2_1 = "../../../tourseurope.php"
	dqm__url2_2 = "http://www.metalblade.com/japan/toursjp.php"
	dqm__url2_3 = "../../../toursaustralia.php"

	

     
//Sub Menu 3

	dqm__sub_xy3 = "-62,22"
	dqm__sub_menu_width3 = 140

	dqm__subdesc3_0 = "STORE HOME"
	dqm__subdesc3_1 = "ARTISTS INDEX"
	dqm__subdesc3_2 = "DVD"
    dqm__subdesc3_3 = "VHS"
	dqm__subdesc3_4 = "CASSETTES"
    dqm__subdesc3_5 = "VINYL"
    dqm__subdesc3_6 = "SHIRTS"
    dqm__subdesc3_7 = "BOOKS"
    dqm__subdesc3_8 = "ORDER OFFLINE"
    dqm__subdesc3_9 = "EBAY SALES"
  
         	
    dqm__icon_index3_0 = 0
	dqm__icon_index3_1 = 0
    dqm__icon_index3_2 = 0
    dqm__icon_index3_3 = 0
    dqm__icon_index3_4 = 0
    dqm__icon_index3_5 = 0
    dqm__icon_index3_6 = 0
    dqm__icon_index3_7 = 0
    dqm__icon_index3_8 = 0
    dqm__icon_index3_9 = 0 
            
	
	dqm__url3_0 = "http://www.metalbladestore.com/"
	dqm__url3_1 = "http://www.metalbladestore.com/siteindex.html"
	dqm__url3_2 = "http://www.metalbladestore.com/dvd#band"
    dqm__url3_3 = "http://www.metalbladestore.com/vhs#band"
    dqm__url3_4 = "http://www.metalbladestore.com/cassette#band"
    dqm__url3_5 = "http://www.metalbladestore.com/vinyl#band"
    dqm__url3_6 = "http://www.metalbladestore.com/shirts#band"
    dqm__url3_7 = "http://www.metalbladestore.com/martinpopoff#band"
    dqm__url3_8 = "http://www.metalbladestore.com/orderoffline#band"
   	dqm__url3_9 = "http://www.stores.ebay.com/metalbladerecordsstore"
           
          
//Sub Menu 4

	dqm__sub_xy4 = "-42,22"
	dqm__sub_menu_width4 = 140
    dqm__url4 = "../../../listen2004.html"
	dqm__urltarget4 = "_self"

//Sub Menu 5

	dqm__sub_xy5 = "-42,22"
	dqm__sub_menu_width5 = 140
    dqm__url5 = "../../../video2004.html"
    dqm__urltarget5 = "_self"

//Sub Menu 6

	dqm__sub_xy6 = "-42,22"
	dqm__sub_menu_width6 = 140
    dqm__url6 = "../../../radio.html"
    dqm__urltarget6 = "_self"

//Sub Menu 7

	dqm__sub_xy7 = "-32,22"
	dqm__sub_menu_width7 = 140
    dqm__url7 = "../../../spanish/faq2004.html"
	dqm__urltarget7 = "_self"

//Sub Menu 8

	dqm__sub_xy8 = "-52,22"
	dqm__sub_menu_width8 = 180

	dqm__subdesc8_0 = "HOME METAL BLADE"
	dqm__subdesc8_1 = "METAL BLADE JAPAN"
	dqm__subdesc8_2 = "REVISTAS / WEBZINES"
	dqm__subdesc8_3 = "BANDAS WEB SITES"
	dqm__subdesc8_4 = "ALUMNI METAL BLADE"
    dqm__subdesc8_5 = "SELLOS / DISTRIBUIDORAS"
    dqm__subdesc8_6 = "MERCADERIÁ"
    dqm__subdesc8_7 = "LINKS COOL"
   
         	
    dqm__icon_index8_0 = 0
	dqm__icon_index8_1 = 0
    dqm__icon_index8_2 = 0
    dqm__icon_index8_3 = 0
    dqm__icon_index8_4 = 0
	dqm__icon_index8_5 = 0
	dqm__icon_index8_6 = 0
    dqm__icon_index8_7 = 0
        
            
	
	dqm__url8_0 = "http://www.metalblade.com/spanish/content.html"
	dqm__url8_1= "http://www.metalblade.com/japan/content.html"
	dqm__url8_2= "http://www.metalblade.com/linksmagswebz2004.html"
	dqm__url8_3 = "http://www.metalblade.com/linksbands2004.html"
	dqm__url8_4 = "vmetal_blade_alumni.html"
    dqm__url8_5 = "http://www.metalblade.com/linkslabelanddist2004.html"
    dqm__url8_6 = "http://www.metalblade.com/linksmerch2004.html"
    dqm__url8_7 = "http://www.metalblade.com/linksads2004.html"
	
        

//Sub Menu 9

	dqm__sub_xy9 = "-76,22"
	dqm__sub_menu_width9 = 180

	dqm__subdesc9_0 = "METAL BLADE HOCKEY"
	dqm__subdesc9_1 = "THE BRIAN SLAGEL SHOW"
    dqm__subdesc9_2 = "METAL BLADE EN INGLÉS"
    dqm__subdesc9_3 = "METAL BLADE EUROPA"
    dqm__subdesc9_4 = "PROTECTORES DE PANTALLA Y MÁS"
	dqm__subdesc9_5 = "AIM BUDDY ICONS"
    dqm__subdesc9_6 = "CENTRAL HOCKEY LEAGUE"
    dqm__subdesc9_7 = "CONTESTS / QUICK BITS" 
    dqm__subdesc9_8 = "LISTA DE NOTICIAS DE METAL BLADE POR E-MAIL"	
    
	dqm__icon_index9_0 = 0
	dqm__icon_index9_1 = 0
    dqm__icon_index9_2 = 0
    dqm__icon_index9_3 = 0
    dqm__icon_index9_4 = 0
    dqm__icon_index9_5 = 0  
	dqm__icon_index9_6 = 0 
	dqm__icon_index9_7 = 0
	dqm__icon_index9_8 = 0 
        
      
	
	dqm__url9_0 = "http://www.metalblade.com/hockey/index2004.html"
	dqm__url9_1 = "http://www.metalblade.com/slagel_show/slagelshow2004.html"
    dqm__url9_2 = "http://www.metalblade.com/content.html"
    dqm__url9_3 = "http://www.metalblade.de"
    dqm__url9_4 = "http://www.metalblade.com/screensavers/index2004.html"
    dqm__url9_5 = "http://www.metalblade.com/buddy_icons/aim_icons.html"
	dqm__url9_6 = "http://www.centralhockeyleague.com"
    dqm__url9_7 = "http://www.metalblade.com/newsna2004.html#contests.html"
	dqm__url9_8 = "mailto:metalblade@metalblade.com"

//Sub Menu 10

	dqm__sub_xy10 = "-76,22"
	dqm__sub_menu_width10 = 140
       
   dqm__url10 = "../../../spanish/about2004.html"
   dqm__urltarget10 = "_self"
           




