/*
	Title: OS Detect Redirect
	Author: www.t3d.co.uk - E.B
	Date: 09/02/07
	Copyright 2006 (C) T3D
*/
function doDetect() {
	// Browser detect script from www.quirksmode.org
	var detect = navigator.userAgent.toLowerCase();
	var OS;

	if (!OS)
	{
		if (checkIt('linux')) OS = "Linux";
		else if (checkIt('x11')) OS = "Unix";
		else if (checkIt('mac')) OS = "Mac";
		else if (checkIt('win')) OS = "Windows";
		else OS = "an unknown operating system";
	}

	function checkIt(string)
	{
		place = detect.indexOf(string) + 1;
		thestring = string;
		return place;
	}

	// check for windows
	if (OS != "Windows")
	{
			guidedTour();
			styleHide("walkAroundTitle");
	}

}
addEvent(window,"load",doDetect);
