var NavItems = Array();


function AddNavItem(DisplayText, URL) {
	NavItems[NavItems.length] = Array(NavItems.length, -1, DisplayText, "", URL, "");
}


function NavItemClick(Index) {
	location.href = NavItems[Index][4];
}


function NavItemHover(ItemObj, InOut) {
	if (ItemObj.style.color!="white") {
		if (InOut) {
			ItemObj.style.color = "#bce9fa";
		}
		else {
			ItemObj.style.color = "";
		}
	}
}


function SetActiveNavItem(SearchStr) {
	for (i=0; i<NavItems.length; i++) {
		if (NavItems[i][2].toLowerCase().indexOf(SearchStr.toLowerCase())!=-1) {
			with (document.getElementById("NavItem"+i)) {
				style.filter = "blendTrans(duration=1)";
				filters[0].Apply();
				style.color = "white";
				children[0].filters[0].opacity = 100;
				filters[0].Play();
			}

			break;
		}
	}
}


function DrawNavItems() {
	for (i=0; i<NavItems.length; i++) {
		NavItems[i][2]=="shopping cart"?IsCartItem=true:IsCartItem=false;

		document.write("<div id=NavItem"+i+" style=height:14;width:165;margin-top:"+(IsCartItem?20:0)+";margin-bottom:5 onmouseover=NavItemHover(this,1) onmouseout=NavItemHover(this,0) onclick=NavItemClick("+i+") class=NavItem>");
		document.write("<img src=images/folder_mawar.gif align=absmiddle style=height:14;width:14;border:none;margin-right:3;filter:alpha(opacity=20)>"+NavItems[i][2]);
		document.write("</div>");

		if (IsCartItem) {
			document.write("<div style=width:165;margin-bottom:5;padding-left:17;padding-right:5 class=MainText>");
			document.write("<div style=margin-bottom:5>"+CartText+"</div>");
			document.write("<div style=margin-bottom:2><a href=cart.asp class=MainText>View cart...</a></div>");
			document.write("<div><a href=checkout.asp class=MainText>Checkout...</a></div>");
			document.write("</div>");
		}
	}
}


AddNavItem("welcome", "new/index.html");
AddNavItem("About Us", "new/about.html");
AddNavItem("Gallery MA", "new/gallery.html");
AddNavItem("Articles", "new/article.html");
AddNavItem("Our Products", "new/product.html");
AddNavItem("Awards", "new/award.html");
AddNavItem("Advertising", "new/advertising.html");
AddNavItem("Contact Us", "new/contact.html");
AddNavItem("Vote Our Site", "http://www.aquarank.com/in.php?id=mawar");
DrawNavItems();