// Last change Sep 26 2007

// x-coordinate of top left corner of dropdown menu
var initX             = 1; 

// y-coordinate from the top of dropdown menu 
var initY             = 100; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = '#E07A1E'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#778899'; 

// the color of dropdown menu border
var borderColor = 'white'; 

// 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, 
100, // 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  
// Home
new Array (
'About Us', 'http://www.art-bridge.com/info/about_us.htm', 
'Our Mission', 'http://www.art-bridge.com/info/mission.htm',
'Link To Us', 'http://www.art-bridge.com/link_to_us.htm',
'Affiliate Program', 'http://www.art-bridge.com/info/affl_pgm.htm', 
'List Your Site', 'http://www.art-bridge.com/services/site_submissions.htm',
'Contact Us', 'http://www.art-bridge.com/info/contact_us.htm'
));


menuContent [1] = new Array ( 
-1, 
-1, 
120, // 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
// For Artists
new Array (
'Exchange Link', 'http://www.art-bridge.com/link_partners/link_partnership.htm', 
'Submit Ad', 'http://www.art-bridge.com/forms/classifieds_submission_form.htm',
'Publish Article', 'mailto:newsletter@art-bridge.com?subject=Art Bridge Newsletter (ISSN: 1537-9671) Article Submission',
'Add Your Name', 'http://www.art-bridge.com/forms/artists_index_submission.htm',
'List Your Site', 'http://www.art-bridge.com/services/site_submissions.htm',
'Expo Your Art', 'http://www.art-bridge.com/forms/art_expo.htm',
'Be a Featured Artist', 'http://www.art-bridge.com/forms/ab_presentation.htm',
'Open a Gallery', 'http://www.art-bridge.com/forms/artists_membership_online.htm',
'Sell Your Art', 'http://www.art-bridge.com/stores/sell.htm'
));

menuContent [2] = new Array ( 
-1, 
-1,
120, // 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
// For Galleries
new Array (
'Submit Ad', 'http://www.art-bridge.com/forms/classifieds_submission_form.htm', 
'Exchange Link', 'http://www.art-bridge.com/link_partners/link_partnership.htm',
'Publish Article', 'mailto:newsletter@art-bridge.com?subject=Art Bridge Newsletter (ISSN: 1537-9671) Article Submission',
'Advertise in Newsletter', 'http://www.art-bridge.com/forms/newsletter_submission_form.htm', 
'List Your Gallery', 'http://www.art-bridge.com/forms/galleries_index_submission.htm',
'List Your Site', 'http://www.art-bridge.com/services/site_submissions.htm',
'Feature Your Site', 'http://www.art-bridge.com/forms/ab_presentation.htm',
'Sell Art', 'http://www.art-bridge.com/stores/sell.htm'

));

menuContent [3] = new Array ( 
-1, 
1,
120, // 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
// For Businesses
new Array (
'Submit Ad', 'http://www.art-bridge.com/forms/classifieds_submission_form.htm', 
'Exchange Link', 'http://www.art-bridge.com/link_partners/link_partnership.htm',
'List Your Site', 'http://www.art-bridge.com/services/site_submissions.htm',
'Ad in Newsletter', 'http://www.art-bridge.com/forms/newsletter_submission_form.htm', 
'Sell Your Stuff', 'http://www.art-bridge.com/stores/sell.htm', 
'Feature Your Site', 'http://www.art-bridge.com/forms/ab_presentation.htm',
'Put Your Banner', 'mailto:info@arthbys.com?subject=Banner Advertising',
'Your Services', 'http://www.art-bridge.com/info/promote.htm' 
));


menuContent [4] = new Array ( 
-1, 
1,
120, // 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
// For Visitors
new Array (
'Submit Ad', 'http://www.art-bridge.com/forms/classifieds_submission_form.htm', 
'Make Money', 'http://www.art-bridge.com/info/make_money.htm',
'Join Our Team', 'http://www.art-bridge.com/info/join_us.htm',
'Your Kid Art', 'http://www.arthbys.com/ak/participate.html', 
'Sell Your Stuff', 'http://www.art-bridge.com/stores/sell.htm',
'Download', 'http://www.art-bridge.com/download/index.htm',
'Feedback', 'http://www.art-bridge.com/info/contact_us.htm'

));
