// JavaScript Document
function ClassNavigator()
{
	this._NAV=null;
	
	this.detectnavigator = function ()
	{
		var _NAVIGATOR=null;
		
		if (navigator.userAgent.indexOf('OmniWeb')!=-1) this._NAV=0;
		else if (navigator.userAgent.indexOf('Opera')!=-1) this._NAV=0;
		else if (navigator.userAgent.indexOf('Safari')!=-1) this._NAV=3;
		else if (navigator.userAgent.indexOf('Firefox')!=-1) this._NAV=2;
		else if (navigator.userAgent.indexOf('MSIE')!=-1) this._NAV=1;
	}
	
	this.detectnavigator();
}