
	var isMac, isWin, isLinux, isiPhone, isOther, fontType, fontTypeSize, osName;
	isMac = (Browser.Platform.mac) ? true : false;
	isWin = (Browser.Platform.win) ? true : false;
	isLinux = (Browser.Platform.linux) ? true : false;
	isiPhone = (Browser.Platform.ipod) ? true : false;
	isOther = (Browser.Platform.other) ? true : false;

	var fontUnit = "pt";
	if (isMac) { fontType="Arial, Helvetica, Myriad Pro, sans-serif"; fontTypeSize="8" + fontUnit; osName=Browser.Platform.name; }
	else if (isWin) { fontType="Arial, Helvetica, sans-serif"; fontTypeSize="8" + fontUnit; osName=Browser.Platform.name; }
	else if (isLinux) { fontType="Arial, Helvetica, sans-serif"; fontTypeSize="8" + fontUnit; osName=Browser.Platform.name; }
	else if (isiPhone) { fontType="Arial, Helvetica, sans-serif"; fontTypeSize="8" + fontUnit; osName=Browser.Platform.name; }
	else if (isOther) { fontType="Arial, Helvetica, sans-serif"; fontTypeSize="8" + fontUnit; osName=Browser.Platform.name; }

	// Because browsers handle things differently, we identify the user's browser
	var isTrident, isGecko, isWebkit, isPresto, browserType;
	isTrident = (Browser.Engine.trident) ? true : false;
	isGecko = (Browser.Engine.gecko) ? true : false;
	isWebkit = (Browser.Engine.webkit) ? true : false;
	isPresto = (Browser.Engine.presto) ? true : false;

	if (isTrident || isGecko || isWebkit || isPresto) { browserType=Browser.Engine.name; }
	if (isWebkit && isiPhone) { browserType="ipod"; }

	//alert(browserType);
	
	// Since IE is different with ever darn version, we have to get the IE version
	var sIEVersion;
	if (isTrident) {
		var isIE6, isIE7, isIE8;
		isIE6 = (sBrowserUserAgentString.indexOf("MSIE 6") != -1) ? true : false;
		isIE7 = (sBrowserUserAgentString.indexOf("MSIE 7") != -1) ? true : false;
		isIE8 = (sBrowserUserAgentString.indexOf("MSIE 8") != -1) ? true : false;
		if (isIE6) { sIEVersion="ie6";  browserType=browserType + sIEVersion; }
		else if (isIE7) { sIEVersion="ie7"; browserType=browserType + sIEVersion;  }
		else if (isIE8) { sIEVersion="ie6"; browserType=browserType + sIEVersion;  }
	}
	
	// Mouse activity
	/*
	function movLinks(x) { x.highlight('#0077CC','#CCC'); }
	function motLinks(x) { x.setStyles({ 'color': '#FFF' }); }
	*/
	function movLinks(x) {  }
	function motLinks(x) {  }
