
//  QuickMenu Pro, Copyright (c) - 2002, OpenCube Inc. - http://www.opencube.com
//  
//
//
//  QuickMenu Pro - (QuickMenu v3.0) Works With....
//
//      IE4, IE5.x, IE6 (Win 95, 98, ME, 2000, NT, XP)
//      IE4, IE5.x, &up (Mac)
//      NS4.x (All Platforms)
//      NS5/6.x (All Platforms)
//      ns7 - beta (All Platforms)
//      Opera 5 & 6 (All Platforms)
//      Mozilla 1.0 & up
//
//  
//  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 70%. Note: To simplify comment 
//  removal there is a uncommented version of this sample template
//  offered in the 'samples' folder.
//
//
//  NOTE: Parameters with an appended '//' 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, across frames, or over certain
//        form field elements. A hide and show workaround for form
//        fields is included with this menu (see the 'Menu event 
//        triggered custom function calls' section below).         




/*-------------------------------------------
Copyright Notice - The following parameter is 
required in order for the menu to function.
--------------------------------------------*/


   DQM_Notice = "DHTML QuickMenu, Copyright (c) - 2002, OpenCube Inc. - www.opencube.com"
 


/*-------------------------------------------
required menu Settings
--------------------------------------------*/
   limit_multiple_users = true

   DQM_sub_menu_width = 150      //default sub menu widths
   DQM_sub_xy = "0,0"            //default sub x,y coordinates
   
   
   DQM_codebase = "includes/"             //relative location of .js files
   DQM_urltarget = "_self"       //set to: _self, _parent, _new, or "my frame name"

   DQM_border_width = 1
   DQM_divider_height = 1

   DQM_border_color = "#000000"  //Hex color value or 'transparent'
   DQM_menu_bgcolor = "#CCCCCC"  //Hex color value or 'transparent'
   DQM_hl_bgcolor = "#003399"    //Hex color value
   

   /*---The following parameter defines the delay
   -----time between the mouse moving outside of
   -----a sub menu and the sub menu actually closing.
   -----In all browsers except Netscape 4.x this time 
   -----period starts after the mouse leaves the sub 
   -----menu and the user stops moving the mouse. 
   -----This setting is useful for reducing end-user 
   -----error in the selection of sub menus. Defined 
   -----in milliseconds (1/1000s)---*/

   DQM_mouse_off_delay = 100
   
  
   /*---Internet Explorer Mac Offset Fix - The following
   -----parameters correct position reporting bugs in
   -----ie4.x and ie5.x on the Mac OS9 and OSX platforms.
   -----Adjust the offsets below until the first level
   -----sub menus pop up in the correct location.*/
   
   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


   /*---Netscape 4.x fix option - bugs in Netscape 4.x
   -----can cause layers (sub menus) to be rendered
   -----incorrectly upon resizing the browser window.
   -----The only way to work around this issue is to reload
   -----the page after a resize. The following parameters allow
   -----the menu to automatically reload the page for the user
   -----after a resize, prompts the user to reload the page
   -----manually after resize, or attempts to correct the menu
   -----after a resize without reloading.-----*/
   
   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 4 & up fix - The following parameter option
   -----corrects div mouse detection bugs on Opera. Set the
   -----parameter value to true if your sub menus are located
   -----at the lowest point on the HTML page.---*/

   DQM_use_opera_div_detect_fix = true;


/*-------------------------------------------
Internet Explorer Transition Effects - IE5.5 & UP

Note: All non supporting browsers will ignore
the effect settings below while retaining the
complete sub menu functionality and look.
--------------------------------------------*/

	
   /*----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 = .4
   DQM_sub_item_effect_duration = .4

  
   /*----Customization option settings for the various effect
   ------transitions may be defined below---*/

   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
   

   /*----Note: Due to browser limitations, when using a 
   ------drop shadow effect or sub menu opacity values
   ------less than 100, combined with sub menu and or
   ------sub menu item transitions, undesirable transition
   ------results may occur. To remedy the issue use
   ------semi transparent sub menus or borders without
   ------transition effects or use transition effects without
   ------borders and set the sub menu opacity value to 100.---*/
   
   /*----Opacity is defined with a value between
   ------1 and 100 with 100 being opaque---*/   	

   DQM_sub_menu_opacity = 100

   DQM_dropshadow_color = "none"                //Hex color value or 'none'
   DQM_dropshadow_offx = 5                      //drop shadow width
   DQM_dropshadow_offy = 5	                //drop shadow height




/*-------------------------------------------
Required font Settings
--------------------------------------------*/
   

   DQM_textcolor = "#000000"
   DQM_fontfamily = "Verdana"            //Any available system font     
   DQM_fontsize = 10		         //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' 	
   DQM_hl_textcolor = "#FFFFFF"
   DQM_hl_textdecoration = "none"   //set to: 'normal', or 'underline'

   DQM_margin_top = 2
   DQM_margin_bottom = 3
   DQM_margin_left = 5
   DQM_margin_right = 4

   DQM_text_alignment = "left"           //set to: 'left', 'center' or 'right'
   



/*---------------------------------------------
Optional Icon Images - Relative Positioning

The relative positioned icon images are automatically
placed directly before or after the sub menu items
text (placement is determined by text alignment). 
By adding transparent space to the left or right
of the icon image itself, a custom image to text gap
may be obtained (Note: The gap space between icon
images and text may also be achieved by using the
menus optional 2nd icon image, see the 'optional 2nd
icon images' section for more information). The 
relative positioned icons are useful for creating
text bullets for aesthetic purposes or symbolic icons
for different sub menu items.
-----------------------------------------------*/


   /*----Unlimited icon images may be defined and associated with any sub menu
   ------item by specifying the icons index with the 'DQM_icon_index' parameter 
   ------see the 'sub menu customization' section below for examples---------*/


   //DQM_icon_image0 = "images/"
   //DQM_icon_rollover0 = "images/"
   //DQM_icon_image_wh0 = "13,8"

   //DQM_icon_image1 = "sample_images/arrow.gif"
   //DQM_icon_rollover1 = "sample_images/arrow.gif"
   //DQM_icon_image_wh1 = "13,10"


/*---------------------------------------------
Optional 2nd Icon Images - Absolute Positioning

The 2nd absolute positioned icons may be positioned 
anywhere within the sub menu items bounding area. 
These icon images are useful for creating arrows 
or other symbols which indicate the existence of a 
child sub menu. Sub menu text alignment or length 
will not affect the images placement.  If your images 
undesirably appear over the top of sub menu text 
items then adjust the icons coordinates, sub menu 
widths, or margins accordingly.

Note: Icon image coordinates are defined relative to
the top right corner of the sub menu item when the
sub menu text is left aligned, or relative to the
top left corner when the sub menus text is right
aligned.
-----------------------------------------------*/


   /*----Unlimited icon images may be defined and associated with any sub menu
   ------item by specifying the icons index with the 'DQM_2nd_icon_index' parameter 
   ------see the 'sub menu customization' section below for examples---------*/

   DQM_2nd_icon_image0 = "sample_images/arrow.gif"
   DQM_2nd_icon_rollover0 = "sample_images/arrow.gif"
   DQM_2nd_icon_image_wh0 = "13,10"
   DQM_2nd_icon_image_xy0 = "0,4"


/*---------------------------------------------
Optional Status Bar Text

Note: Custom defined status bar text for a menu item 
will be displayed in place of the URL when the 
'DQM_show_urls_statusbar' parameter is set to true.
-----------------------------------------------*/

   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"	




/*********************************************************************/
/*                                                                   */
/*                       MAIN MENU CUSTOMIZATION                     */
/*                                                                   */ 
/*********************************************************************/

/*--------------------------------------------------------------------

The following parameters define the main menu items rollover images and 
URL's. Each rollover image is connected to a pre-defined HTML image within
your web page by matching the rollover parameters index to the defined
index of your html pages menu image (See the documentation or view the
source of 'sample.htm' for information on setting up HTML image tags 
as menu items). The rollover image parameters are provided as an optional 
effect and are not required in order for the menu to function.

Note: To define URL links for a main menu image, define both a URL link
      parameter below (i.e. "DQM_url0 = 'myurl.htm'") and attach a
      hyperlink tag (<a href='myurl.htm'>...<a>) to the menu's associated
      image within your HTML page. This redundancy is required for 
      complete cross browser functionality of main menu URL links.

      Specific main menu image URL targets may also be defined by defining
      a 'DQM_urltargetX' parameter, where X is the the associated main
      menu items index number. Allowable 'DQM_urltarget' param values
      include... _self, _parent, _new, or "my frame name".
	  
---------------------------------------------------------------------*/

   DQM_rollover_image10 = "http://images.trucks.com/images/textnav_01r.gif"
   DQM_rollover_wh10 = "95,13"
   DQM_url0 = "http://www.trucks.com/parts_transmissions.asp";   

   DQM_rollover_image11 = "http://images.trucks.com/images/textnav_02r.gif"
   DQM_rollover_wh11 = "95,13"
   DQM_url1 = "http://www.trucks.com/parts_differentials.asp";

   DQM_rollover_image12 = "http://images.trucks.com/images/textnav_03r.gif" 
   DQM_rollover_wh12 = "109,13"
   DQM_url2 = "http://www.trucks.com/abt_cars.asp";   

   DQM_rollover_image13 = "http://images.trucks.com/images/textnav_04r.gif" 
   DQM_rollover_wh13 = "91,13"
   DQM_url3 = "http://www.trucks.com/abt_creviews.asp"; 
   
   DQM_rollover_image14 = "http://images.trucks.com/images/textnav_05r.gif"
   DQM_rollover_wh14 = "127,13"
   DQM_url4 = "http://www.trucks.com/services_worldwideexport.asp";   

   DQM_rollover_image15 = "http://images.trucks.com/images/textnav_06r.gif"
   DQM_rollover_wh15 = "127,13"
   DQM_url5 = "http://www.trucks.com/services_bluebook.asp";

   DQM_rollover_image16 = "http://images.trucks.com/images/textnav_07r.gif" 
   DQM_rollover_wh16 = "137,13"
   DQM_url6 = "http://www.trucks.com/trucks_financing.asp";   

   DQM_rollover_image17 = "http://images.trucks.com/images/textnav_08r.gif" 
   DQM_rollover_wh17 = "91,13"
   DQM_url7 = "http://www.trucks.com/info_fico_creditreport.asp"; 
   
   DQM_rollover_image19 = "http://images.trucks.com/images/subnav_01r.gif" 
   DQM_rollover_wh19 = "185,15"
   DQM_url9 = "http://www.trucks.com/trucks_inventory_garbage.asp";
   
   DQM_rollover_image20 = "http://images.trucks.com/images/subnav_02r.gif" 
   DQM_rollover_wh20 = "185,15"
   DQM_ur20 = "http://trucks.com/trucks_inventory_rentgarbage.asp";
   
   DQM_rollover_image21 = "http://images.trucks.com/images/subnav_03r.gif" 
   DQM_rollover_wh21 = "185,15"
   DQM_ur21 = "http://trucks.com/truckindex.asp";
   
   DQM_rollover_image22 = "http://images.trucks.com/images/subnav_04r.gif" 
   DQM_rollover_wh22 = "185,15"
   DQM_ur22 = "http://www.trucks.com/parts.asp";
   
   DQM_rollover_image23 = "http://images.trucks.com/images/subnav_05r.gif" 
   DQM_rollover_wh23 = "185,15"
   DQM_ur23 = "http://www.trucks.com/parts_truck_engines.asp";
   
   DQM_rollover_image24 = "http://images.trucks.com/images/subnav_06r.gif" 
   DQM_rollover_wh24 = "185,15"
   DQM_ur24 = "http://www.trucks.com/parts_transmissions.asp";
   
   DQM_rollover_image25 = "http://images.trucks.com/images/subnav_07r.gif" 
   DQM_rollover_wh25 = "185,15"
   DQM_ur25 = "http://www.trucks.com/parts_salvageyard.asp";
   
   DQM_rollover_image26 = "http://images.trucks.com/images/subnav_08r.gif" 
   DQM_rollover_wh26 = "185,15"
   DQM_ur26 = "http://www.trucks.com/services_subs_reg_classifieds.asp";
   
   DQM_rollover_image27 = "http://images.trucks.com/images/subnav_09r.gif" 
   DQM_rollover_wh27 = "185,15"
   DQM_ur27 = "http://www.trucks.com/trucks_financing.asp";
   
   DQM_rollover_image28 = "http://images.trucks.com/images/subnav_10r.gif" 
   DQM_rollover_wh28 = "185,15"
   DQM_ur28 = "http://www.trucks.com/services_subs_reg_trucklocator.asp";
   
   DQM_rollover_image29 = "http://images.trucks.com/images/subnav_12r.gif" 
   DQM_rollover_wh29 = "185,15"
   DQM_ur29 = "http://www.trucks.com/services.asp";
   
   DQM_rollover_image30 = "http://images.trucks.com/images/subnav_13r.gif" 
   DQM_rollover_wh30 = "185,15"
   DQM_ur30 = "http://www.trucks.com/info.asp";
   
   DQM_rollover_image31 = "http://images.trucks.com/images/subnav_14r.gif" 
   DQM_rollover_wh31 = "185,15"
   DQM_ur31 = "http://www.trucks.com/abt_cars.asp";
   
   DQM_rollover_image32 = "http://images.trucks.com/images/subnav_11r.gif" 
   DQM_rollover_wh32 = "185,15"
   DQM_ur32 = "http://www.trucks.com/abt_cars.asp";
  

  /*---------------------------------------------
Menu 0 - Trucks - Top Navigation 
-----------------------------------------------*/
DQM_sub_xy0 = "-60,19"
DQM_sub_menu_width10 = 140;
DQM_subdesc0_0 = "Garbage Trucks"
DQM_subdesc0_1 = "New Trucks"		
DQM_subdesc0_2 = "Used Trucks"		
DQM_subdesc0_3 = "Truck Rental"			
DQM_subdesc0_4 = "Mack Trucks"			  
DQM_subdesc0_5 = "Semi Trucks"	
DQM_subdesc0_6 = "Dump Trucks"		
DQM_subdesc0_7 = "More Trucks"
//DQM_icon_index0_0 = 0
DQM_url0 = "http://www.trucks.com/trucks.asp"
DQM_url0_0 = "http://trucks.com/trucks_inventory_garbage.asp"
DQM_url0_1 = "http://www.trucks.com/trucks.asp"
DQM_url0_2 = "http://www.trucks.com/trucks.asp"
DQM_url0_3 = "http://www.trucks.com/trucks_inventory_rentgarbage.asp"
DQM_url0_4 = "http://www.trucks.com/trucks.asp"
DQM_url0_5 = "http://www.trucks.com/trucks.asp"
DQM_url0_6 = "http://www.trucks.com/trucks.asp"
DQM_url0_7 = "http://trucks.com/truckindex.asp"


/*---------------------------------------------
Menu 1 - Parts - Top Navigation
-----------------------------------------------*/
DQM_sub_xy1 = "-53,19"
DQM_sub_menu_width1 = 140;
DQM_subdesc1_0 = "Truck Parts"
DQM_subdesc1_1 = "Used Truck Parts"

DQM_subdesc1_2 = "New Truck Parts"
DQM_subdesc1_3 = "Mack Truck Parts"
DQM_subdesc1_4 = "More Truck Parts"
//DQM_icon_index1_0 = 1
DQM_url1 = "http://www.trucks.com/parts.asp"
DQM_url1_0 = "http://www.trucks.com/parts.asp"
DQM_url1_1 = "http://www.trucks.com/parts_used.asp"

DQM_url1_2 = "http://www.trucks.com/parts_new.asp"
DQM_url1_3 = "http://www.trucks.com/parts.asp"
DQM_url1_4 = "http://www.trucks.com/parts.asp"

/*---------------------------------------------
Menu 2 - Information - Top Navigation
-----------------------------------------------*/
DQM_sub_xy2 = "-93,19"
DQM_sub_menu_width2 = 140;
DQM_subdesc2_0 = "Monthly Specials"
DQM_subdesc2_1 = "What's New"
DQM_subdesc2_2 = "FAQ's"
DQM_subdesc2_3 = "FICOŽ Scores"
DQM_subdesc2_4 = "Maps/Directions"
DQM_subdesc2_5 = "More Info"
//DQM_icon_index2_0 = 1
DQM_url2 = "http://www.trucks.com/info.asp"
DQM_url2_0 = "http://www.trucks.com/spotlight.asp"
DQM_url2_1 = "http://www.trucks.com/info_new.asp"
DQM_url2_2 = "http://www.trucks.com/info_faq.asp"
DQM_url2_3 = "http://www.trucks.com/info_fico.asp "
DQM_url2_4 = "http://www.trucks.com/info_contact.asp"
DQM_url2_5 = "http://www.trucks.com/info.asp"

/*---------------------------------------------
Menu 3 - Services - Top Navigation
-----------------------------------------------*/
DQM_sub_xy3 = "-70,19"
DQM_sub_menu_width3 = 150;
DQM_subdesc3_0 = "Truck Financing"
DQM_subdesc3_1 = "Black Book Online"
DQM_subdesc3_2 = "Free Truck Classifieds"
DQM_subdesc3_3 = "Truck Locator"
DQM_subdesc3_4 = "Parts Locator"
DQM_subdesc3_5 = "More Services"
//DQM_icon_index3_0 = 1
DQM_url3 = "http://www.trucks.com/services.asp"
DQM_url3_0 = "http://www.trucks.com/trucks_financing.asp"
DQM_url3_1 = "services_blackbook.asp"
DQM_url3_2 = "http://www.trucks.com/services_subs_reg_classifieds.asp"
DQM_url3_3 = "http://www.trucks.com/services_subs_reg_trucklocator.asp"
DQM_url3_4 = "http://www.trucks.com/services_subs_reg_partslocator.asp"
DQM_url3_5 = "http://www.trucks.com/services.asp"

/*---------------------------------------------
Menu 4 - Financing - Top Navigation
-----------------------------------------------*/
DQM_sub_xy4 = "-78,19"
DQM_sub_menu_width4 = 140;
DQM_subdesc4_0 = "Truck Financing"
DQM_subdesc4_1 = "Financing Programs"
DQM_subdesc4_2 = "Credit Application"
DQM_subdesc4_3 = "Credit History"
//DQM_icon_index4_0 = 1
DQM_url4 = "http://www.trucks.com/trucks_financing.asp"
DQM_url4_0 = "http://www.trucks.com/trucks_financing.asp"
DQM_url4_1 = "http://www.trucks.com/trucks_financing.asp"
DQM_url4_2 = "http://www.trucks.com/trucks_financing_application.asp"
DQM_url4_3 = "http://www.trucks.com/info_fico.asp"

		/*---------------------------------------------
		Menu 4a - Truck Financing - Top Navigation
		-----------------------------------------------*/
		
		DQM_sub_xy4_0 = "-20,5"
		DQM_sub_menu_width4_0 = 175;
		DQM_subdesc4_0_0 = "Truck Financing"
		DQM_subdesc4_0_1 = "Used Truck Financing"
		DQM_subdesc4_0_2 = "Commercial Truck Financing"
		DQM_subdesc4_0_3 = "Heavy Duty Truck Financing"
		//DQM_icon_index4_0 = 1
		DQM_url4_0_0 = "http://www.trucks.com/trucks_financing.asp"
		DQM_url4_0_1 = "http://www.trucks.com/trucks_financing.asp"
		DQM_url4_0_2 = "http://www.trucks.com/trucks_financing.asp"
		DQM_url4_0_3 = "http://www.trucks.com/trucks_financing.asp"


/*---------------------------------------------
Menu 5 - Salvage - Top Navigation
-----------------------------------------------*/
DQM_sub_xy5 = "-68,19"
DQM_sub_menu_width5 = 140;
DQM_subdesc5_0 = "Salvage Yard"
DQM_subdesc5_1 = "Auto Salvage"
DQM_subdesc5_2 = "Salvage Parts"
DQM_subdesc5_3 = "Truck Salvage"
DQM_subdesc5_4 = "More Salvage"
//DQM_icon_index5_0 = 1
DQM_url5 = "http://www.trucks.com/parts_salvage.asp"
DQM_url5_0 = "http://www.trucks.com/parts_salvageyard.asp"
DQM_url5_1 = "http://www.trucks.com/parts_salvage.asp"
DQM_url5_2 = "http://www.trucks.com/parts_salvageyard.asp"
DQM_url5_3 = "http://www.trucks.com/parts_inventory.asp?category=43"
DQM_url5_4 = "http://www.trucks.com/parts_salvage.asp"

/*---------------------------------------------
Menu 6 - Contact Us - Top Navigation
-----------------------------------------------*/
DQM_sub_xy6 = "-82,19"
DQM_sub_menu_width6 = 140;
DQM_subdesc6_0 = "E-mail"
DQM_subdesc6_1 = "Phone #"
DQM_subdesc6_2 = "Address"
DQM_subdesc6_3 = "Fax #"
//DQM_icon_index6_0 = 1
DQM_url6 = "http://www.trucks.com/info_contact.asp"
DQM_url6_0 = "http://www.trucks.com/info_contact.asp"
DQM_url6_1 = "http://www.trucks.com/info_contact.asp"
DQM_url6_2 = "http://www.trucks.com/info_contact.asp"
DQM_url6_3 = "http://www.trucks.com/info_contact.asp"


/*---------------------------------------------
Menu 7 - Commercial Vehicles
-----------------------------------------------*/
DQM_sub_xy7 = "-275,19"
DQM_sub_menu_width7 = 120;
DQM_subdesc7_0 = "Trucks"
DQM_subdesc7_1 = "Bodies"
DQM_subdesc7_2 = "Trailers"
DQM_subdesc7_3 = "Equipment"
DQM_subdesc7_4 = "Truck Index"
//DQM_icon_index7_0 = 1
DQM_url7_0 = "http://www.trucks.com/trucks.asp"
DQM_url7_1 = "http://trucks.com/trucks_inventory_bodies.asp"
DQM_url7_2 = "http://trucks.com/trucks_inventory_trailers.asp"
DQM_url7_3 = "http://trucks.com/trucks_inventory_equipment.asp"
DQM_url7_4 = "http://trucks.com/truckindex.asp"

		/*---------------------------------------------
		Menu 7a - Commercial Vehicles
		-----------------------------------------------*/
		DQM_sub_xy7_1 = "-20,5"
		DQM_sub_menu_width7_1 = 120;
		DQM_subdesc7_1_0 = "Truck Bodies"
		DQM_subdesc7_1_1 = "Packer bodies"
		//DQM_icon_index7_0 = 1
		DQM_url7_1_0 = "http://trucks.com/trucks_inventory_bodies.asp"
		DQM_url7_1_1 = "http://trucks.com/trucks_inventory_packerbodies.asp"
 	

/*---------------------------------------------
Menu 8 - Consumer Vehicles
-----------------------------------------------*/
DQM_sub_xy8 = "-275,19"
DQM_sub_menu_width8 = 120;
DQM_subdesc8_0 = "Pick Up Trucks"
DQM_subdesc8_1 = "Passenger Cars"
DQM_subdesc8_2 = "Sport Utility"
DQM_subdesc8_3 = "Vans, Mini Van's"
DQM_subdesc8_4 = "Compact Cars"
DQM_subdesc8_5 = "Sports Cars"
DQM_subdesc8_6 = "Convertibles"
DQM_subdesc8_7 = "Luxury Cars"
DQM_subdesc8_8 = "Wagons"
//DQM_icon_index8_0 = 1
DQM_url8_0 = "abt_trucks.asp"
DQM_url8_1 = "abt_cars.asp"
DQM_url8_2 = "abt_trucks.asp"
DQM_url8_3 = "abt_trucks.asp"
DQM_url8_4 = "abt_cars.asp"
DQM_url8_5 = "abt_cars.asp"
DQM_url8_6 = "abt_cars.asp"
DQM_url8_7 = "abt_cars.asp"
DQM_url8_8 = "abt_cars.asp"


/*---------------------------------------------
Menu 9 - Engines
-----------------------------------------------*/
DQM_sub_xy9 = "-130,19"
DQM_sub_menu_width9 = 140;
DQM_subdesc9_0 = "Engines"
DQM_subdesc9_1 = "Used Engines"
DQM_subdesc9_2 = "Rebuilt Engines"
DQM_subdesc9_3 = "Rebuildable Engines"
DQM_subdesc9_4 = "Diesel Engine Cores"
//DQM_icon_index9_0 = 1
DQM_url9 = "http://www.trucks.com/parts_truck_engines.asp"
DQM_url9_0 = "http://www.trucks.com/parts_truck_engines.asp"
DQM_url9_1 = "http://www.trucks.com/parts_used_dengines.asp"
DQM_url9_2 = "http://www.trucks.com/parts_rebuilt_dengines.asp"
DQM_url9_3 = "http://www.trucks.com/parts_rebuild_dengines.asp"
DQM_url9_4 = "http://www.trucks.com/parts_engine_cores.asp"


/*---------------------------------------------
Menu 10 - Transmissions
-----------------------------------------------*/
DQM_sub_xy10 = "-95,14"
DQM_sub_menu_width10 = 160;
DQM_subdesc10_0 = "Truck Transmissions"

DQM_subdesc10_1 = "Used Transmissions"
DQM_subdesc10_2 = "Automatic Transmissions"
//DQM_icon_index10_0 = 1
DQM_url10 = "http://www.trucks.com/parts_transmissions.asp"
DQM_url10_0 = "http://www.trucks.com/parts_transmissions.asp"

DQM_url10_1 = "http://www.trucks.com/parts_used_transmissions.asp"
DQM_url10_2 = "http://www.trucks.com/parts_auto_transmissions.asp"


/*---------------------------------------------
Menu 11 - Differentials
-----------------------------------------------*/
DQM_sub_xy11 = "-95,14"
DQM_sub_menu_width11 = 150;
DQM_subdesc11_0 = "Differentials"
DQM_subdesc11_1 = "Rear Ends"

DQM_subdesc11_2 = "Used Differentials"
DQM_subdesc11_3 = "Axle Ratio Chart"
//DQM_icon_index11_0 = 1
DQM_url11 = "http://www.trucks.com/parts_differentials.asp"
DQM_url11_0 = "http://www.trucks.com/parts_differentials.asp"
DQM_url11_1 = "http://www.trucks.com/parts_differentials.asp"

DQM_url11_2 = "http://www.trucks.com/parts_used_differentials.asp"
DQM_url11_3 = "http://www.trucks.com/parts_axle_ratio.asp"


/*---------------------------------------------
Menu 12 - Buying a New Car
-----------------------------------------------*/
DQM_sub_xy12 = "-109,14"
DQM_sub_menu_width12 = 140;
DQM_subdesc12_0 = "Buying New Car"
DQM_subdesc12_1 = "Research New Cars"
//DQM_icon_index12_0 = 1
DQM_url12 = "abt_cars.asp"
DQM_url12_0 = "abt_cars.asp"
DQM_url12_1 = "abt_newcars.asp"
 

/*---------------------------------------------
Menu 13 - Car Reviews
-----------------------------------------------*/
DQM_sub_xy13 = "-90,14"
DQM_sub_menu_width13 = 120;
DQM_subdesc13_0 = "Car Reviews"
DQM_subdesc13_1 = "Car Ratings"
//DQM_icon_index13_0 = 1
DQM_url13 = "abt_creviews.asp"
DQM_url13_0 = "abt_creviews.asp"
DQM_url13_1 = "abt_cratings.asp"
 
 
 /*---------------------------------------------
Menu 14 - Worldwide Export
-----------------------------------------------*/
DQM_sub_xy14 = "-125,14"
DQM_sub_menu_width14 = 140;
DQM_subdesc14_0 = "Truck Exports"
DQM_subdesc14_1 = "Truck Parts Exports"
//DQM_icon_index14_0 = 1
DQM_url14 = "http://www.trucks.com/services_worldwideexport.asp"
DQM_url14_0 = "http://www.trucks.com/services_worldwideexport.asp"
DQM_url14_1 = "http://www.trucks.com/services_worldwideexport.asp"
 
 
 /*---------------------------------------------
Menu 15 - Truck Values
-----------------------------------------------*/
DQM_sub_xy15 = "-125,14"
DQM_sub_menu_width15 = 160;
DQM_subdesc15_0 = "Black Book Online"
DQM_subdesc15_1 = "Black Book Values"
DQM_subdesc15_2 = "Used Truck Values"
DQM_subdesc15_3 = "Commercial Truck Values"
DQM_subdesc15_4 = "Consumer Car Values"
//DQM_icon_index15_0 = 1
DQM_url15 = "services_blackbook.asp"
DQM_url15_0 = "services_blackbook.asp"
DQM_url15_1 = "services_blackbook.asp"
DQM_url15_2 = "truck_valuations.asp"
DQM_url15_3 = "truck_valuations.asp"
DQM_url15_4 = "usedcar_valuations.asp"

 /*---------------------------------------------
Menu 16 - Truck Financing
-----------------------------------------------*/
DQM_sub_xy16 = "-135,14"
DQM_sub_menu_width16 = 150;
DQM_subdesc16_0 = "Truck Financing"
DQM_subdesc16_1 = "Financing Programs"
DQM_subdesc16_2 = "Financing Application"
//DQM_icon_index16_0 = 1
DQM_url16 = "http://www.trucks.com/trucks_financing.asp"
DQM_url16_0 = "http://www.trucks.com/trucks_financing.asp"
DQM_url16_1 = "http://www.trucks.com/trucks_financing.asp"
DQM_url16_2 = "http://www.trucks.com/trucks_financing_application.asp"


 /*---------------------------------------------
Menu 17 - Credit Info
-----------------------------------------------*/
DQM_sub_xy17 = "-90,14"
DQM_sub_menu_width17 = 150;
DQM_subdesc17_0 = "FICOŽ Scores"
DQM_subdesc17_1 = "Facts & Fallacies"
DQM_subdesc17_2 = "FICOŽ Looks At"
DQM_subdesc17_3 = "Raise FICOŽ Scores"
DQM_subdesc17_4 = "Check Credit Report"
DQM_subdesc17_5 = "Get FICOŽ Score"
//DQM_icon_index17_0 = 1
DQM_url17 = "http://www.trucks.com/info_fico.asp"
DQM_url17_0 = "http://www.trucks.com/info_fico.asp"
DQM_url17_1 = "http://www.trucks.com/info_fico_facts.asp"
DQM_url17_2 = "http://www.trucks.com/info_fico_howitworks.asp"
DQM_url17_3 = "http://www.trucks.com/info_fico_raisingscore.asp"
DQM_url17_4 = "http://www.trucks.com/info_fico_creditreport.asp"
DQM_url17_5 = "http://www.trucks.com/info_fico_getscore.asp"


 /*---------------------------------------------
Menu 18 - Monthly Specials
-----------------------------------------------*/
DQM_sub_xy18 = "-285,22"
DQM_sub_menu_width18 = 120;
DQM_subdesc18_0 = "Monthly Specials"
DQM_subdesc18_1 = "Promotions"
//DQM_icon_index18_0 = 1
DQM_url18_0 = "http://www.trucks.com/spotlight.asp"
DQM_url18_1 = "http://www.trucks.com/services_promotions.asp"


 /*---------------------------------------------
Menu 19 - Garbage Trucks 
-----------------------------------------------*/
DQM_sub_xy19 = "-335,0"
DQM_sub_menu_width19 = 155;
DQM_subdesc19_0 = "Used Garbage Trucks"
DQM_subdesc19_1 = "Rental Garbage Trucks"
DQM_subdesc19_2 = "Garbage Truck Rental"
DQM_subdesc19_3 = "Grapple Trucks"
DQM_subdesc19_4 = "Roll Off Garbage Trucks"
DQM_subdesc19_5 = "Refuse Trucks"
DQM_subdesc19_6 = "Recycling Trucks"
//DQM_icon_index19_0 = 1
DQM_url19 = "http://www.trucks.com/trucks_inventory_garbage.asp"
DQM_url19_0 = "http://www.trucks.com/trucks_inventory_garbage.asp"
DQM_url19_1 = "http://trucks.com/trucks_inventory_rentgarbage.asp"
DQM_url19_2 = "http://trucks.com/trucks_inventory_rentgarbage.asp"
DQM_url19_3 = "http://trucks.com/trucks_inventory_grapple.asp"
DQM_url19_4 = "http://trucks.com/trucks_inventory_rolloff.asp"
DQM_url19_5 = "http://www.trucks.com/trucks_inventory_garbage.asp"
DQM_url19_6 = "http://trucks.com/trucks_inventory_recycling.asp"


 /*---------------------------------------------
Menu 20 - Rental Trucks 
-----------------------------------------------*/
DQM_sub_xy20 = "-360,0"
DQM_sub_menu_width20 = 180;
DQM_subdesc20_0 = "Rear Loader Garbage Trucks"
DQM_subdesc20_1 = "Front Loader Gabage Trucks"
DQM_subdesc20_2 = "Side Loader Garbage Trucks"
DQM_subdesc20_3 = "Roll Off Garbage Trucks"
DQM_subdesc20_4 = "Grapple Trucks"
DQM_subdesc20_5 = "Rent-to-Own Trucks"
//DQM_icon_index20_0 = 1
DQM_url20 = "http://www.trucks.com/trucks_inventory_rentgarbage.asp"
DQM_url20_0 = "http://trucks.com/trucks_inventory_rearloader.asp"
DQM_url20_1 = "http://www.trucks.com/trucks_inventory_frontloader.asp"
DQM_url20_2 = "http://www.trucks.com/trucks_inventory_sideloader.asp"
DQM_url20_3 = "http://www.trucks.com/trucks_inventory_rolloff.asp"
DQM_url20_4 = "http://www.trucks.com/trucks_inventory_grapple.asp"
DQM_url20_5 = "http://www.trucks.com/trucks_inventory_rentgarbage_own.asp"


 /*---------------------------------------------
Menu 21 - Trucks for Sale 
-----------------------------------------------*/
DQM_sub_xy21 = "-320,0"
DQM_sub_menu_width21 = 140;
DQM_subdesc21_0 = "Trucks"
DQM_subdesc21_1 = "Used Trucks"
DQM_subdesc21_2 = "4x4 Trucks"
DQM_subdesc21_3 = "Mack Trucks"
DQM_subdesc21_4 = "Semi Trucks"
DQM_subdesc21_5 = "Dump Trucks"
DQM_subdesc21_6 = "International Trucks"
DQM_subdesc21_7 = "Volvo Trucks"
DQM_subdesc21_8 = "Tow trucks"
DQM_subdesc21_9 = "Fire trucks"
DQM_subdesc21_10 = "Cab & Chassis"
DQM_subdesc21_11 = "Flatbed trucks"
DQM_subdesc21_12 = "Bucket trucks"
DQM_subdesc21_13 = "Boom trucks"
DQM_subdesc21_14 = "Flatbed trailers"
DQM_subdesc21_15 = "Truck Inventory"
DQM_subdesc21_16 = "More Trucks"
//DQM_icon_index21_0 = 1
DQM_url21 = "http://www.trucks.com/trucks.asp"
DQM_url21_0 = "http://www.trucks.com/trucks.asp"
DQM_url21_1 = "http://www.trucks.com/trucks.asp"
DQM_url21_2 = "http://www.trucks.com/trucks_inventory_allwheel.asp"
DQM_url21_3 = "http://www.trucks.com/trucks_inventory.asp?category=5"
DQM_url21_4 = "http://www.trucks.com/trucks_inventory.asp?category=40"
DQM_url21_5 = "http://www.trucks.com/trucks_inventory.asp?category=37"
DQM_url21_6 = "http://www.trucks.com/trucks_inventory.asp?page=3&category=4&orderBy=5&dir=asc"
DQM_url21_7 = "http://www.trucks.com/trucks_inventory.asp?orderby=5&category=4&sort=1&dir=desc"
DQM_url21_8 = "http://trucks.com/trucks_inventory_tow.asp"
DQM_url21_9 = "http://www.trucks.com/trucks_inventory.asp?category=65"
DQM_url21_10 = "http://www.trucks.com/trucks_inventory.asp?category=7"
DQM_url21_11 = "http://www.trucks.com/trucks_inventory.asp?category=46"
DQM_url21_12 = "http://www.trucks.com/trucks_inventory.asp?category=51"
DQM_url21_13 = "http://www.trucks.com/trucks_inventory.asp?category=41"
DQM_url21_14 = "http://www.trucks.com/trucks_inventory.asp?category=63"
DQM_url21_15 = "http://www.trucks.com/trucks.asp"
DQM_url21_16 = "http://trucks.com/truckindex.asp"


 /*---------------------------------------------
Menu 22 - Truck Parts 
-----------------------------------------------*/
DQM_sub_xy22 = "-345,0"
DQM_sub_menu_width22 = 165;
DQM_subdesc22_0 = "Used Truck Parts"

DQM_subdesc22_1 = "Truck Body Parts"
DQM_subdesc22_2 = "Heavy-duty Truck Parts"
DQM_subdesc22_3 = "International Truck Parts"
DQM_subdesc22_4 = "Volvo Truck Parts"
DQM_subdesc22_5 = "Mack Truck Parts"
DQM_subdesc22_6 = "Semi Truck Parts"
//DQM_icon_index22_0 = 1
DQM_url22 = "http://www.trucks.com/parts.asp"
DQM_url22_0 = "http://www.trucks.com/parts_used.asp"

DQM_url22_1 = "http://www.trucks.com/parts.asp"
DQM_url22_2 = "http://www.trucks.com/parts.asp"
DQM_url22_3 = "http://www.trucks.com/parts_inventory.asp?makeSearch=INTERNATIONAL&category=11"
DQM_url22_4 = "http://www.trucks.com/parts_inventory.asp?makeSearch=VOLVO&category=11"
DQM_url22_5 = "http://www.trucks.com/parts_inventory.asp?makeSearch=MACK&category=11"
DQM_url22_6 = "http://www.trucks.com/parts.asp"


		 /*---------------------------------------------
		Menu 22a - Truck Bodies
		-----------------------------------------------*/
		DQM_sub_xy22_2 = "-272,5"
		DQM_sub_menu_width22_2 = 120;
		DQM_subdesc22_2_0 = "Truck Bodies"
		DQM_subdesc22_2_1 = "Truck Cabs"
		DQM_subdesc22_2_2 = "Truck Doors"
		DQM_subdesc22_2_3 = "Truck Hoods"
		DQM_subdesc22_2_4 = "Truck Radiators"
		DQM_subdesc22_2_5 = "Other Body Parts"
		//DQM_icon_index22_0_0 = 1
		DQM_url22_2_0 = "http://www.trucks.com/trucks_inventory_bodies.asp"
		DQM_url22_2_1 = "http://www.trucks.com/parts_inventory.asp?category=29"
		DQM_url22_2_2 = "http://www.trucks.com/parts_inventory.asp?category=16"
		DQM_url22_2_3 = "http://www.trucks.com/parts_inventory.asp?category=33"
		DQM_url22_2_4 = "http://www.trucks.com/parts_inventory.asp?category=34"
		DQM_url22_2_5 = "http://www.trucks.com/parts_used.asp"


 /*---------------------------------------------
Menu 23 - Engines 
-----------------------------------------------*/
DQM_sub_xy23 = "-345,0"
DQM_sub_menu_width23 = 165;
DQM_subdesc23_0 = "Used Engines"
DQM_subdesc23_1 = "Rebuilt Engines"
DQM_subdesc23_2 = "Diesel Engines"
DQM_subdesc23_3 = "Cummins Diesel Engines"
DQM_subdesc23_4 = "Detroit Diesel Engines"
DQM_subdesc23_5 = "Used Diesel Engines"
DQM_subdesc23_6 = "Ford Diesel Engines"
DQM_subdesc23_7 = "Rebuilt Diesel Engines"
//DQM_icon_index23_0 = 1
DQM_url23 = "http://www.trucks.com/parts_used_dengines.asp"
DQM_url23_0 = "http://www.trucks.com/parts_used_dengines.asp"
DQM_url23_1 = "http://www.trucks.com/parts_rebuilt_dengines.asp"
DQM_url23_2 = "http://www.trucks.com/parts_truck_engines.asp"
DQM_url23_3 = "http://www.trucks.com/parts_inventory.asp?makeSearch=CUMMINS&category=11"
DQM_url23_4 = "http://www.trucks.com/parts_inventory.asp?makeSearch=DETROIT&category=11"
DQM_url23_5 = "http://www.trucks.com/parts_used_dengines.asp"
DQM_url23_6 = "http://www.trucks.com/parts_inventory.asp?makeSearch=FORD&category=11"
DQM_url23_7 = "http://www.trucks.com/parts_rebuilt_dengines.asp"


 /*---------------------------------------------
Menu 24 - Transmissions 
-----------------------------------------------*/
DQM_sub_xy24 = "-345,0"
DQM_sub_menu_width24 = 165;
DQM_subdesc24_0 = "Automatic Transmissions"

DQM_subdesc24_1 = "Used Transmissions"
DQM_subdesc24_2 = "Allison Transmissions"
DQM_subdesc24_3 = "Auto Transmissions"
//DQM_icon_index24_0 = 1
DQM_url24 = "http://www.trucks.com/parts_transmissions.asp"
DQM_url24_0 = "http://www.trucks.com/parts_auto_transmissions.asp"

DQM_url24_1 = "http://www.trucks.com/parts_used_transmissions.asp"
DQM_url24_2 = "http://www.trucks.com/parts_inventory.asp?category=27&makeSearch=trauto"
DQM_url24_3 = "http://www.trucks.com/parts_auto_transmissions.asp"


 /*---------------------------------------------
Menu 25 - Truck Salvage 
-----------------------------------------------*/

DQM_sub_xy25 = "-330,0"
DQM_sub_menu_width25 = 150;
DQM_subdesc25_0 = "Big Truck Salvage"
DQM_subdesc25_2 = "Salvage Truck Part"
DQM_subdesc25_1 = "Truck Salvage Yard"
DQM_subdesc25_3 = "Heavy Truck Salvage"
DQM_subdesc25_4 = "Salvage Semi Trucks"
DQM_subdesc25_5 = "Salvage Trucks"
//DQM_icon_index25_0 = 1
DQM_url25 = "http://www.trucks.com/parts_salvage.asp"
DQM_url25_0 = "http://www.trucks.com/parts_salvage.asp"
DQM_url25_1 = "http://www.trucks.com/parts_used.asp"
DQM_url25_2 = "http://www.trucks.com/parts_salvageyard.asp"
DQM_url25_3 = "http://www.trucks.com/parts_used.asp"
DQM_url25_4 = "http://www.trucks.com/parts_inventory.asp?category=43"
DQM_url25_5 = "http://www.trucks.com/parts_inventory.asp?category=43"


 /*---------------------------------------------
Menu 26 - Truck Classifieds 
-----------------------------------------------*/
DQM_sub_xy26 = "-345,0"
DQM_sub_menu_width26 = 165;
DQM_subdesc26_0 = "4x4 Truck Classifieds"
DQM_subdesc26_2 = "Free Truck Classifieds"
DQM_subdesc26_1 = "Semi Truck Classifieds"
DQM_subdesc26_3 = "Sell My Truck"
DQM_subdesc26_4 = "Garbage Truck Classifieds"
//DQM_icon_index26_0 = 1
DQM_url26 = "http://www.trucks.com/classifieds/classifieds.cgi?website=&language=&session_key=&place_front_page=on"
DQM_url26_0 = "http://www.trucks.com/services_subs_reg_classifieds.asp"
DQM_url26_1 = "http://www.trucks.com/classifieds/classifieds.cgi?website=&language=&session_key=&place_front_page=on"
DQM_url26_2 = "http://www.trucks.com/services_subs_reg_classifieds_b.asp"
DQM_url26_3 = "http://www.trucks.com/classifieds/classifieds.cgi?website=&language=&session_key=&place_front_page=on"
DQM_url26_4 = "http://www.trucks.com/classifieds/classifieds.cgi"


 /*---------------------------------------------
Menu 27 - Truck Financing 
-----------------------------------------------*/
DQM_sub_xy27 = "-365,0"
DQM_sub_menu_width27 = 185;
DQM_subdesc27_0 = "Garbage Truck Financing"
DQM_subdesc27_2 = "Commercial Truck Financing"
DQM_subdesc27_1 = "Heavy Truck Financing"
DQM_subdesc27_3 = "Heavy Duty Truck Financing"
DQM_subdesc27_4 = "Used Truck Financing"
DQM_subdesc27_5 = "Dump Truck Financing"
//DQM_icon_index27_0 = 1
DQM_url27 = "http://www.trucks.com/trucks_financing.asp"
DQM_url27_0 = "http://www.trucks.com/trucks_financing.asp"
DQM_url27_1 = "http://www.trucks.com/trucks_financing.asp"
DQM_url27_2 = "http://www.trucks.com/trucks_financing_application.asp"
DQM_url27_3 = "http://www.trucks.com/trucks_financing_application.asp"
DQM_url27_4 = "http://www.trucks.com/services_subs_reg_credit_application.asp"
DQM_url27_5 = "http://www.trucks.com/trucks_financing.asp"

 /*---------------------------------------------
Menu 28 - Truck Locater
-----------------------------------------------*/
DQM_sub_xy28 = "-330,0"
DQM_sub_menu_width28 = 150;
DQM_subdesc28_0 = "Used Truck Locator"
//DQM_icon_index28_0 = 1
DQM_url28 = "http://www.trucks.com/services_subs_reg_trucklocator.asp"
DQM_url28_0 = "http://www.trucks.com/services_subs_reg_trucklocator.asp"


 /*---------------------------------------------
Menu 29 - Services
-----------------------------------------------*/
DQM_sub_xy29 = "-400,0"
DQM_sub_menu_width29 = 220;
DQM_subdesc29_0 = "Black Book Online"
DQM_subdesc29_1 = "Truck Financing"
DQM_subdesc29_2 = "Truck Classifieds"
DQM_subdesc29_3 = "Export Trucks"
DQM_subdesc29_4 = "Export Truck Parts"
DQM_subdesc29_5 = "Other Services"
//DQM_icon_index29_0 = 1
DQM_url29 = "http://www.trucks.com/services.asp"
DQM_url29_0 = "http://www.trucks.com/services_blackbook.asp"
DQM_url29_1 = "http://www.trucks.com/trucks_financing.asp"
DQM_url29_2 = "http://www.trucks.com/services_subs_reg_classifieds.asp"
DQM_url29_3 = "http://www.trucks.com/services_worldwideexport.asp"
DQM_url29_4 = "http://www.trucks.com/services_worldwideexport.asp"
DQM_url29_5 = "http://www.trucks.com/services.asp"


 /*---------------------------------------------
Menu 30 - Information
-----------------------------------------------*/
DQM_sub_xy30 = "-330,0"
DQM_sub_menu_width30 = 150;
DQM_subdesc30_0 = "Information"
DQM_subdesc30_1 = "Online Newsletter"
DQM_subdesc30_2 = "Publicity"
DQM_subdesc30_3 = "Special Events"
DQM_subdesc30_4 = "Employment"
DQM_subdesc30_5 = "Maps and Directions"
DQM_subdesc30_6 = "FAQ's"
//DQM_icon_index30_0 = 1
DQM_url30 = "http://www.trucks.com/info.asp"
DQM_url30_0 = "http://www.trucks.com/info.asp"
DQM_url30_1 = "http://www.trucks.com/info_new_newsletter.asp"
DQM_url30_2 = "http://www.trucks.com/info_new_publicity.asp"
DQM_url30_3 = "http://www.trucks.com/info_new_events.asp"
DQM_url30_4 = "http://www.trucks.com/info_employment.asp"
DQM_url30_5 = "http://www.trucks.com/info_contact.asp"
DQM_url30_6 = "http://www.trucks.com/info_faq.asp"


 /*---------------------------------------------
Menu 31 - Auto Buying Service
-----------------------------------------------*/
DQM_sub_xy31 = "-310,0"
DQM_sub_menu_width31 = 130;
DQM_subdesc31_0 = "Cars"
DQM_subdesc31_1 = "Used Cars"
DQM_subdesc31_2 = "Sell My Car"
DQM_subdesc31_3 = "Trucks"
DQM_subdesc31_4 = "Research New Cars"
DQM_subdesc31_5 = "Car Reviews"
DQM_subdesc31_6 = "Car Ratings"
//DQM_icon_index31_0 = 1
DQM_url31 = "abt_cars.asp"
DQM_url31_0 = "abt_cars.asp"
DQM_url31_1 = "abt_usedcars.asp"
DQM_url31_2 = "abt_sellmycar.asp"
DQM_url31_3 = "abt_trucks.asp"
DQM_url31_4 = "abt_newcars.asp"
DQM_url31_5 = "abt_creviews.asp"
DQM_url31_6 = "abt_cratings.asp" 

 /*---------------------------------------------
Menu 32 - Parts Locator
-----------------------------------------------*/
DQM_sub_xy32 = "-310,0"
DQM_sub_menu_width32 = 130;
DQM_subdesc32_0 = "Used Parts Locator"
//DQM_icon_index32_0 = 1
DQM_url32 = "http://www.trucks.com/services_subs_reg_partslocator.asp"
DQM_url32_0 = "http://www.trucks.com/services_subs_reg_partslocator.asp"
							
							 
		  					 
						 
							





