/*
Filename: pulldown_menus.js
Desc:     Pulldown menu definitions for cedarkeyattitude.com
Author:   Relevant Arts Enterprise, Inc. <http://www.relevantarts.com/>
          John A. Lock <jlock@relevantarts.com>
Created:  2004-Apr-17
Modified: 
*/

_menuCloseDelay=500           // The time delay for menus to remain visible on mouse out
_menuOpenDelay=150            // The time delay before menus open on mouse over
_subOffsetTop=10              // Sub menu top offset
_subOffsetLeft=-10            // Sub menu left offset

// Set the menu Y position to a default value
var YOffset = 0;
// If it's the home page, set Y down a little
if ((location.pathname.indexOf("index.html") != -1) ||
		(location.pathname.indexOf("html") == -1)) { 
		YOffset += 23;
}

with(DefaultStyle=new mm_style()) {
onbgcolor="#F8EDD9";
oncolor="#9D7F97";
offbgcolor="#F8EDD9";
offcolor="#0C3E5D";
bordercolor="#0C3E5D";
borderstyle="solid";
borderwidth=1;
separatorcolor="#0C3E5D";
separatorsize="1";
padding=2;
fontsize="12";
fontstyle="normal";
fontfamily="Verdana,Arial,Helvetica,sans-serif";
overfilter="Alpha(style=0,opacity=85)";
orientation="horizontal";
}

with(milonic=new menuname("where")) {
style=DefaultStyle;
top=162 + YOffset;
left=144;
aI("text=Accommodations;url=where_to_stay_cedar_key.html;");
// aI("text=Unit 2E - 'Changes in Latitude';url=unit2e.html;");
aI("text=Unit 2F - 'Changes in Attitude';url=unit2f.html;");
aI("text=Unit 9F - 'Tranquility';url=unit9f.html;");
}

with(milonic=new menuname("what")) {
style=DefaultStyle;
top=208 + YOffset;;
left=144;
aI("text=Activities;url=cedar_key_attractions.html;");
aI("text=Fishing/Boating;url=cedar_key_fishing.html;");
aI("text=Nature;url=cedar_key_ecotourism.html;");
aI("text=Dining;url=cedar_key_restaurant.html;");
}

with(milonic=new menuname("weather")) {
style=DefaultStyle;
top=254 + YOffset;;
left=144;
aI("text=Weather Center;url=cedar_key_weather.html;");
aI("text=Current;url=cedar_key_weather.html#current;");
aI("text=Historical;url=cedar_key_weather.html#history;");
aI("text=Tides;url=cedar_key_weather.html#tides;");
aI("text=Stargazing;url=cedar_key_weather.html#stars;");
}

with(milonic=new menuname("maps")) {
style=DefaultStyle;
top=300 + YOffset;;
left=144;
aI("text=Overview;url=where_is_cedar_key.html;");
aI("text=Regional;url=where_is_cedar_key.html#region;");
aI("text=Local;url=where_is_cedar_key.html#local;");
}

with(milonic=new menuname("reservations")) {
style=DefaultStyle;
top=346 + YOffset;;
left=144;
aI("text=Bookings;url=cedar_key_lodging_reservation.html;");
aI("text=Contacts;url=cedar_key_lodging_reservation.html#contact;");
}

drawMenus();
