fixMozillaZIndex=true; //Fixes Z-Index problem  with Mozilla browsers but causes odd scrolling problem, toggle to see if it helps
_menuCloseDelay=500;
_menuOpenDelay=150;
_subOffsetTop=2;
_subOffsetLeft=-2;

with(menuStyle=new mm_style()){
bordercolor="#999999";
borderstyle="solid";
borderwidth=1;
fontfamily="Comic sans ms, Georgia, Arial";
fontsize="75%";
fontstyle="normal";
headerbgcolor="#ffffff";
headercolor="#000000";
onbgcolor="#ff9933";
oncolor="#000099";
offbgcolor="#9999ff";
offcolor="#000099";
outfilter="randomdissolve(duration=0.5)";
overfilter="Fade(duration=0.4);Alpha(opacity=100)";
padding=4;
pagebgcolor="#82B6D7";
pagecolor="black";
separatorcolor="#000099";
separatorsize=2;
subimage="images/submenu-down-arrow.gif";
subimagepadding=2;
}

with(milonic=new menuname("Main Menu")){
alwaysvisible=1;
position="relative";
followscroll=0;
left=10;
orientation="horizontal";
style=menuStyle;
top=10;
aI("text=Walk Home;url=index.shtml;");
aI("showmenu=Walk Locations;text=Locations;");
aI("showmenu=Registration;text=Registration;");
aI("showmenu=Incentives & Prizes;text=Prizes;");
aI("text=Pledge a Walker;url=pledge.shtml;");
aI("showmenu=Fundraising;text=Fundraising;");
aI("showmenu=How You Can Help;text=How You Can Help;");
}

with(milonic=new menuname("Walk Locations")){
overflow="scroll";
style=menuStyle;
aI("text=Regina;url=locations-regina.shtml;")
aI("text=Saskatoon;url=locations-saskatoon.shtml;")
aI("text=Prince Albert;url=locations-prince-albert.shtml;")
aI("text=Yorkton;url=locations-yorkton.shtml;")
}


with(milonic=new menuname("Incentives & Prizes")){
style=menuStyle;
aI("text=Prizes;url=prizes.shtml;");
aI("text=Incentives;url=incentives.shtml;");
}

with(milonic=new menuname("Fundraising")){
style=menuStyle;
aI("text=Tips;url=fundraising_tips.shtml;");
aI("text=Online Giving;url=personal_giving.shtml;");
}

with(milonic=new menuname("Registration")){
style=menuStyle;
aI("text=Register Online;url=registration.shtml;");
aI("text=Download A Pledge Sheet;url=2011 Pledge Form b & w.pdf;target=_blank");
}


with(milonic=new menuname("How You Can Help")){
style=menuStyle;
aI("text=Become a Sponsor;url=become_a_sponsor.shtml;");
aI("text=Become a Volunteer;url=become_a_volunteer.shtml;");
}

drawMenus();

/*** 
*** For the ASOS Home Link 
*** Added by Camilo
***/

var HOME_ON = new Image();
HOME_ON.src = "images/home_info_on.png";
var HOME_OFF = new Image(); 
HOME_OFF.src = "images/home_info_blank.png";

function showHomeInfo() {
	document.images['home_info'].src = HOME_ON.src;
	return true;
}

function hideHomeInfo() {
	document.images['home_info'].src = HOME_OFF.src;
	return true;
}

