//Both Netscape and MSIE go in separate ways when it comes to determining what an Object's type was
//So much so that I cannot just make a normal split (Netscape will not run the script otherwise
if (document.all || navigator.family == "gecko")
	{
	document.write("<SCRIPT LANGUAGE=\"JavaScript\" SRC=\"/javascripts/menu/IE_instanceof.js\"></SCRIPT>");
	}
else
	{
	document.write("<SCRIPT LANGUAGE=\"JavaScript\" SRC=\"/javascripts/menu/Netscape_instanceof.js\"></SCRIPT>");
	}