// GET NAVIGATOR
function getNavigator() {
	if (navigator.userAgent.indexOf('MSIE') !=-1)
		browser = 'MSIE';
	else 
		browser = 'Other';
	return browser;
}
			
// GET WIN HEIGHT
function getWindowHeight() {
	var windowHeight = 0;
	if (typeof(window.innerHeight) == 'number')
		windowHeight = window.innerHeight;
	else {
		if (document.documentElement && document.documentElement.clientHeight)
			windowHeight = document.documentElement.clientHeight;
		else if (document.body && document.body.clientHeight)
			windowHeight = document.body.clientHeight;
	}		return windowHeight;
}

// GET WIN WIDTH
function getWindowWidth() {
	var ww = 0;
	if (self.innerWidth)
		ww = self.innerWidth;
	else if (document.documentElement && document.documentElement.clientWidth)
		ww = document.documentElement.clientWidth;
	else if (document.body)
		ww = document.body.clientWidth;
	return ww;
}

// MENU STYLE
function rowOverEffect(row) {
	if (row.className == 'moduleRow') row.className = 'moduleRowOver';
}
function rowOutEffect(row) {
	if (row.className == 'moduleRowOver') row.className = 'moduleRow';
}
