//Swap Images


if(navigator.appName == "Netscape" && navigator.appVersion.charAt(0) >=3 || navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.charAt(0) >=4){


	theImages = new Array();
	theImages[1] = new Image();
	theImages[1].src = "images/mn_home_off.gif";
	theImages[2] = new Image();
	theImages[2].src = "images/mn_aegis_off.gif";
	theImages[3] = new Image();
	theImages[3].src = "images/mn_faq_off.gif";
	theImages[4] = new Image();
	theImages[4].src = "images/mn_order_off.gif";
	
	theImages[5] = new Image();
	theImages[5].src = "../images/mn_home_off.gif";
	theImages[6] = new Image();
	theImages[6].src = "../images/mn_aegis_off.gif";
	theImages[7] = new Image();
	theImages[7].src = "../images/mn_faq_off.gif";
	theImages[8] = new Image();
	theImages[8].src = "../images/mn_order_off.gif";

	theImages[100] = new Image();
	theImages[100].src = "images/mn_home_onm.gif";
	theImages[200] = new Image();
	theImages[200].src = "images/mn_aegis_onm.gif";
	theImages[300] = new Image();
	theImages[300].src = "images/mn_faq_onm.gif";
	theImages[400] = new Image();
	theImages[400].src = "images/mn_order_onm.gif";
	
	theImages[500] = new Image();
	theImages[500].src = "../images/mn_home_onm.gif";
	theImages[600] = new Image();
	theImages[600].src = "../images/mn_aegis_onm.gif";
	theImages[700] = new Image();
	theImages[700].src = "../images/mn_faq_onm.gif";
	theImages[800] = new Image();
	theImages[800].src = "../images/mn_order_onm.gif";
}


function ChangeBullet(obj,suffix) {
	if(navigator.appName == "Netscape" && navigator.appVersion.charAt(0) >=3 || navigator.appName == "Microsoft Internet Explorer" && navigator.appVersion.charAt(0) >=4){
		eval("document." + obj + ".src=theImages[suffix].src");
	}
}
// 



//Window Open
function newWindow(url){
    newwindow=window.open("","newwin","toolbar=yes,location=no,directories=no,status=yes,scrollbars=yes,resizable=yes,width=820,height=760");
    newwindow.focus();
    newwindow.location.href=url;
}


