var menuLen = 3;
var arrMenu = new Array(menuLen);
var arrAlt  = new Array(menuLen);

arrMenu[1] = "/default";
arrMenu[2] = "/packages";
arrMenu[3] = "/contact-us";

arrAlt[1] = "ABOUT";
arrAlt[2] = "PACKAGES";
arrAlt[3] = "CONTACT US";

function getAllMenus()
{
	for (var i= 1; i <= menuLen; i++)
	{
		getMenu(i);
	}
}

function getMenu(position)
{
	var sMenu = "";
	if (position == activeMenu)
	{
		sMenu = "<img src=\"/images/dot.gif\" width=\"60 px\" height=\"60px\" border=\"0\" >";
	}
	else
	{
		sMenu = "<img src=\"/images/m" + position + ".jpg\" width=\"60 px\" height=\"60px\" border=\"0\" alt=\"" + arrAlt[position] + "\">";
		sMenu = "<a href=\"" + arrMenu[position] + ".asp\" onmouseover=\"javascript:return(true);\">" + sMenu + "</a>";
	}
	document.all("divMenu" + position).innerHTML = sMenu;
}

// client login
function afmlogin() {
	window.open("","wedjbride","width=720,height=510,left=10, status=yes, top=10, resizable=yes,scrollbars=yes")
}
