// constants

// x-coordinate of top left corner of dropdown menu 
var initX             = -500; 

// y-coordinate of top left corner of dropdown menu 
var initY             = -500; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = '#B40101'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#EEEEEE'; 

// the color of dropdown menu border
var borderColor = '#FF0000'; 

// the width of menu border
var borderSize  = '1'; 

// height of menu itesm
var itemHeight  = 20;

// overlapping between 
var xOverlap    = 5;
var yOverlap    = 10;

// end of constants


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, 
-1,
112, // the width of current menu list 
-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
new Array (
'&nbsp;&nbsp;RazrRak', 'razrrak.shtml', 
'&nbsp;&nbsp;Sk8rRak', 'sk8rrak.shtml'
));

menuContent [1] = new Array ( 
-1, 
-1,
112, // the width of current menu list 
-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
//new Array (
//'&nbsp;&nbsp;RazrRak', 'razrrak.shtml', 
//'&nbsp;&nbsp;Sk8rRak', 'sk8rrak.shtml'
//));

new Array (
'&nbsp;&nbsp;RazrRak', 'razrrak.shtml'
));


menuContent [2] = new Array ( 
-1, 
-1,
112, // the width of current menu list 
-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
new Array (
'&nbsp;&nbsp;International', 'buyint.shtml', 
'&nbsp;&nbsp;United States', 'buyusa.shtml'
));


