// ### DETECTION BROWSER ###function navCheck()	{ //Browsercheck (needed)	this.ver = navigator.appVersion;	this.ie4 = (document.all && !document.getElementById)?1:0;	this.ie5 = (this.ver.indexOf("MSIE 5")>-1 && document.getElementById)?1:0;	this.ie6 = (this.ver.indexOf("MSIE 6")>-1 && document.getElementById)?1:0;	this.ie7 = (this.ver.indexOf("MSIE 7")>-1 && document.getElementById)?1:0;	this.ns4 = (document.layers && !document.getElementById)?1:0;	this.ns6 = (document.getElementById && !document.all )?1:0;	this.mac = (this.ver.indexOf("Mac") != -1)?1:0;		this.nav = (this.ie4 || this.ie5 || this.ie6 || this.ns4 || this.ns6 || this.mac)	return this	}var nav = new navCheck();// ### DETECTION BROWSER ###// ########## CSS ##########nav = (nav.ie4||nav.ie5||nav.ie6||nav.ie7) ? document.write("<link rel='STYLESHEET' type='text/css' href='css/n_win-ie4-ie5-nn6_mac-ie5.css'>") : (nav.ns4) ? document.write("<link rel='STYLESHEET' type='text/css' href='css/n_win-nn4.css'>") : (nav.ns6) ? document.write("<link rel='STYLESHEET' type='text/css' href='css/n_win-nn6.css'>") :  (nav.mac) ? document.write("<link rel='STYLESHEET' type='text/css' href='css/n_mac-ie4-nn4.css'>") : 0;// ########## CSS ##########