function accIndexBlockMouseOver(obj, color, text) {
	bottom = obj.getElementsByTagName('div')[2];
	obj.getElementsByTagName('a')[0].style.backgroundColor = color;
	obj.getElementsByTagName('div')[1].innerHTML = text;
	bottom.style.opacity = .5;
	bottom.style.filter = 'alpha(opacity=50)';
}
function accIndexBlockMouseOut(obj) {
	bottom = obj.getElementsByTagName('div')[2];
	obj.getElementsByTagName('a')[0].style.backgroundColor = "";
	obj.getElementsByTagName('div')[1].innerHTML = "";
	bottom.style.opacity = 1;
	bottom.style.filter = 'alpha(opacity=100)';
}
function accInit() {
	accResize();
	window.onresize = accResize;
	try {
		var pageTracker = _gat._getTracker("UA-7617016-1");
		pageTracker._trackPageview();
	} catch(err) {}
	}

function accResize() {
	document.getElementById('accLeft').style.height = "";
	var rightHeight = document.getElementById('accRight').clientHeight + 'px';
	var windowHeight = accGetWindowHeight();
	if (document.getElementById('accLeft').clientHeight > windowHeight-190) {
		if (document.getElementById('accRight').clientHeight > windowHeight - 190) {
			document.getElementById('accLeft').style.height = rightHeight;
		}
		else {
			document.getElementById('accLeft').style.height = (windowHeight-190) + 'px';
		}
	}
}
function accGetWindowHeight() { 
	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; 
}