// mjf
var bTestSite=false;
var sBaseSite="http://www.williamhenry.com/";

if (window.location.toString().toLowerCase().indexOf("minisage.com") > -1)
{
	bTestSite=true;
	sBaseSite="http://www.minisage.com/williamhenry/";
}

var nMenuWidth=160;				// width of menus to appear. Set to zero to ignore
var sMenuDir= sBaseSite + "graphics/";

// milonic
_menuCloseDelay=250;           	// The time delay for menus to remain visible on mouse out
_menuOpenDelay=50;             	// The time delay before menus open on mouse over
_subOffsetTop=-1;             	// Sub menu top offset from bottom of image associated with it
_subOffsetLeft=20;            	// Sub menu left offset  // 10

// top level flyout style
with(menuStyle=new mm_style()){
fontfamily="Arial";				// font / font family
fontsize="10px";				// font size
fontstyle="normal";				// font style
onbgcolor="#000000";			// hover background color
oncolor="#FFFFFF";				// hover text color
offbgcolor="#000000";			// normal (non-hover) background color
offcolor="#FFFFFF";				// normal (non-hover) text color
bordercolor="#FFFFFF";			// border color
separatorcolor="#FFFFFF";		// separator color
pagebgcolor="#000000"; 			// this is the (non-hover) background color of the menu item last clicked
pagecolor="#FFFFFF";  			// this is the (non-hover) text color of the menu item last clicked
padding=3;						// menu item cell padding
borderstyle="solid";
borderwidth=1;
separatorsize="1";
headercolor="#FF0000";
headerbgcolor="#FF0000";
subimage= sMenuDir + "arrows.gif";
subimageposition="bottom";
subimagepadding="6";
//overfilter="Fade(duration=0.1);Alpha(opacity=100);Shadow(color='#777777', Direction=135, Strength=5)";
outfilter="Fade(duration=0.1)";
ondecoration="underline"; 
}

// TOP LEVEL - LANDSCAPES
with(milonic=new menuname("LandscapesMenu")){
style=menuStyle;
if (nMenuWidth) itemwidth=nMenuWidth;
top=_subOffsetTop;
left=_subOffsetLeft;
aI("text=Ireland;url=" + sBaseSite + "portfolio/ireland/;");
aI("text=Madeira;url=" + sBaseSite + "portfolio/madeira/;");
aI("text=World;url=" + sBaseSite + "portfolio/world/;");
}
	
drawMenus();  //will do this in main body so we don't lose the page background (milonic bug)

