var BrowserDetect = {
	init: function () {
		this.browser = this.searchString(this.dataBrowser) || "An unknown browser";
		this.version = this.searchVersion(navigator.userAgent)
			|| this.searchVersion(navigator.appVersion)
			|| "an unknown version";
		this.OS = this.searchString(this.dataOS) || "an unknown OS";
	},
	searchString: function (data) {
		for (var i=0;i<data.length;i++)	{
			var dataString = data[i].string;
			var dataProp = data[i].prop;
			this.versionSearchString = data[i].versionSearch || data[i].identity;
			if (dataString) {
				if (dataString.indexOf(data[i].subString) != -1)
					return data[i].identity;
			}
			else if (dataProp)
				return data[i].identity;
		}
	},
	searchVersion: function (dataString) {
		var index = dataString.indexOf(this.versionSearchString);
		if (index == -1) return;
		return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
	},
	dataBrowser: [
		{
			string: navigator.userAgent,
			subString: "Chrome",
			identity: "Chrome"
		},
		{ 	string: navigator.userAgent,
			subString: "OmniWeb",
			versionSearch: "OmniWeb/",
			identity: "OmniWeb"
		},
		{
			string: navigator.vendor,
			subString: "Apple",
			identity: "Safari",
			versionSearch: "Version"
		},
		{
			prop: window.opera,
			identity: "Opera"
		},
		{
			string: navigator.vendor,
			subString: "iCab",
			identity: "iCab"
		},
		{
			string: navigator.vendor,
			subString: "KDE",
			identity: "Konqueror"
		},
		{
			string: navigator.userAgent,
			subString: "Firefox",
			identity: "Firefox"
		},
		{
			string: navigator.vendor,
			subString: "Camino",
			identity: "Camino"
		},
		{		// for newer Netscapes (6+)
			string: navigator.userAgent,
			subString: "Netscape",
			identity: "Netscape"
		},
		{
			string: navigator.userAgent,
			subString: "MSIE",
			identity: "Explorer",
			versionSearch: "MSIE"
		},
		{
			string: navigator.userAgent,
			subString: "Gecko",
			identity: "Mozilla",
			versionSearch: "rv"
		},
		{ 		// for older Netscapes (4-)
			string: navigator.userAgent,
			subString: "Mozilla",
			identity: "Netscape",
			versionSearch: "Mozilla"
		}
	],
	dataOS : [
		{
			string: navigator.platform,
			subString: "Win",
			identity: "Windows"
		},
		{
			string: navigator.platform,
			subString: "Mac",
			identity: "Mac"
		},
		{
			   string: navigator.userAgent,
			   subString: "iPhone",
			   identity: "iPhone/iPod"
	    },
		{
			string: navigator.platform,
			subString: "Linux",
			identity: "Linux"
		}
	]
};
BrowserDetect.init();

var myBVersion = BrowserDetect.version;
var myB = BrowserDetect.browser;
var myBVersion = parseInt(myBVersion);
var wnOpenTop = 158;
var wnOpenBottom = 425;


function detectBrowser() {
	if(myB == 'Explorer') {
		switch(myBVersion) {
			case 6:
				wnOpenTop = 148;
				wnOpenBottom = 415;
				break;
				
			case 7:
				wnOpenTop = 148;
				wnOpenBottom = 415;
				break;
			default:
				wnOpenTop = 158;
				wnOpenBottom = 425;
			break;
		}
	}
}





function setPageSize() {
	contentHeight = document.getElementById('center_content').offsetHeight;
	if(contentHeight < 492) {
		contentHeight = 492;
	}
	contentHeight = contentHeight + 181;
	document.getElementById('center_content').style.height = contentHeight + 'px';
	document.getElementById('bottom_border').style.top = (contentHeight - 55) + 'px';
	document.getElementById('footer').style.top = (contentHeight - 55) + 'px';
}
// onload="javascript:setPageSize();"

var timeOutId;
var currentMenu = "";
var ome = false;

function navButton(theBtn, theEvt) {
	if (currentMenu != theBtn) {
		clearTimeout(timeOutId);
		if(currentMenu != '') {
			document.getElementById(currentMenu).style.display = 'none';
//			theArrow = currentMenu + '_arrow';
//			if(document.images[theArrow]) {
//				document.images[theArrow].src = 'images/clear.gif';
//			}
		}
		currentMenu = theBtn;
	} else {
		clearTimeout(timeOutId);
	}
	
	if(theEvt =='mouseover') {
		document.getElementById(theBtn).style.display = 'block';
//		theArrow = theBtn + '_arrow';
//		if(document.images[theArrow]) {
//			document.images[theArrow].src = 'images/top_nav_arrow.gif';
//		}
	}
	if(theEvt =='mouseout') {
		timeOutId = setTimeout("hideMenu('" + theBtn + "')", 500);
	}
}

function hideMenu(theMenu) {
	document.getElementById(theMenu).style.display = 'none';
//	theArrow = theMenu + '_arrow';
//	if(document.images[theArrow]) {
//		document.images[theArrow].src = 'images/clear.gif';
//	}
}

function checkTimeOut(theDiv) {
	if(theDiv==currentMenu) {
		clearTimeout(timeOutId);
		timeOutId = '';
	}
}

function hideNavDiv(theDiv) {
	timeOutId = setTimeout("hideMenu('" + theDiv + "')", 200);
}

function show_whats_new() {
	detectBrowser();
	document.getElementById('whats_new').style.height = '297px';
	document.getElementById('whats_new').style.top = wnOpenTop + 'px';
}

function hide_whats_new() {
	document.getElementById('whats_new').style.height = '30px';
	document.getElementById('whats_new').style.top = wnOpenBottom + 'px';
}

