// Original Script Author: web.master@male.net // Heavily Modified By: jfarr@cta-dxs.com // constants var initX = 100; var initY = 10; var backColor = '#8a3393'; // the background color of dropdown menu, set empty '' for transparent var borderColor = 'black'; // the color of dropdown menu border var borderSize = '1'; // the width of dropdown menu border var itemHeight = 20; var xOverlap = 5; var yOverlap = 10; var menuContent = new Array (); menuContent [0] = new Array ( -1, // the id of parent menu, -1 if this is a first level menu -1, // the number of line in parent menu, -1 if this is a first level menu 100,// the width of current menu list -3, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate -1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate 4, // root navbar position new Array ( 'Loads', '#')); menuContent [1] = new Array ( -1, -1, 100, -2, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate -1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate 5, new Array ( )); menuContent [2] = new Array ( 0, 1,170, -1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate -1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate 5, new Array ( 'List All Trucks', 'http://prime.loadmover.com/index.php?action=browse-trucks', 'Search Trucks', 'http://prime.loadmover.com/index.php?action=truck-search' )); menuContent [3] = new Array ( 0, 0,150, -1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate -1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate 5, new Array ( 'List All Loads', 'http://prime.loadmover.com/index.php?action=browse-loads', 'List Loads By State', 'http://prime.loadmover.com/index.php?action=load-map', 'Search Loads', 'http://prime.loadmover.com/index.php?action=load-search' )); menuContent [4] = new Array ( 1, 1,160, -1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate -1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate 4, new Array ( 'Post New Load', 'http://prime.loadmover.com/index.php?action=load-post', 'D/L Bulk Template', 'http://prime.loadmover.com/templates/load-template.csv', 'U/L Bulk Loads', 'http://prime.loadmover.com/index.php?action=bulk-load-post' )); menuContent [5] = new Array ( 1, 1,160, -1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate -1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate 4, new Array ( 'Post New Truck', 'http://prime.loadmover.com/index.php?action=truck-post', 'D/L Bulk Template', 'http://prime.loadmover.com/templates/truck-template.csv', 'U/L Bulk Trucks', 'http://prime.loadmover.com/index.php?action=bulk-truck-post' ));