
// Browser detection and stylesheet inclusion (by Fouad Rouaissia - Netarchitects)

var NN 	= document.layers;
var IE 	= document.all;
var MAC = (navigator.appVersion.indexOf("Mac") != -1);

if (!NN && !IE){IE="1";}
url="/cm/css/";
if (MAC)
	// case Mac
	{ if (IE)
		// case Mac + Internet Explorer
		cstyle="bearbull-macie.css";
	  else
		// case Mac + Netscape
		cstyle="bearbull-macns.css";
	}
else 
	// case Windows
	{ if (IE)
		// case Windows + Internet Explorer
		cstyle="bearbull-pcie.css";
	  else
		// case Windows + Netscape
		cstyle="bearbull-pcns.css";
	}
document.write('<LINK REL=stylesheet TYPE="text/css" HREF="'+url+cstyle+'">');

