// determine screen resolution
var menu640x480 = "http://www.yoursite.com/640x480";
var menu800x600 = "http://www.yoursite.com/800x600";
var menu1024x768 = "http://www.yoursite.com/1024x768";
if ((screen.width == 640) && (screen.height == 480)) 
addPixels= '-4';
else if ((screen.width == 800) && (screen.height == 600))
addPixels= '76';
else if ((screen.width == 1024) && (screen.height == 768))
addPixels= '188';
else if ((screen.width == 1280) && (screen.height == 1024))
addPixels= '316';


// constants
var left_corner_x  = addPixels; // x-coordinate of top left corner of dropdown menu 
var left_corner_y  = 113; // y-coordinate of top left corner of dropdown menu 
var back_color     = 'white'; // the background color of dropdown menu 
var border_color   = '#7791C0'; // the color of dropdown menu border
var border_size    = '1'; // the width of dropdown menu border
var menu_width     = '125'; // the width of dropdown menu 
//


// Don't change these parameters
var delay           = 500; /////
var active_layer_id = -1;  /////
var on_layer_id     = -1;  /////
var buff_id         = -1;  /////
/// ----------------------------


// Attention! You have to change the first number in Array line to change the width of the particular column! 
// menu content; the dropdown menus themselfs between '' and items of every dropdown menu are diveded by |; 
// 
menu_content = new Array ('119',
'160 | <a href=download.htm>Register Now</a>',
'102', 
'120 | <a href=feedback.htm>Customer Service</a> | <a href="support.htm">Technical Support</a>',
'107 | <a href=prices.htm>Prices</a> | <a href=../form/form.htm>Order Online</a> | <a href=print_form.htm>Print Order Form</a>',
'109');