function indexBlockMouseOver(obj, color, text) {
	bottom = obj.getElementsByTagName('span')[3];
	obj.getElementsByTagName('span')[0].style.backgroundColor = color;
	obj.getElementsByTagName('span')[2].innerHTML = text;
	bottom.style.opacity = .5;
        bottom.style.filter = 'alpha(opacity=50)';
	
}
function indexBlockMouseOut(obj) {
	bottom = obj.getElementsByTagName('span')[3];
	obj.getElementsByTagName('span')[0].style.backgroundColor = "";
	obj.getElementsByTagName('span')[2].innerHTML = "";
	bottom.style.opacity = 1;
	bottom.style.filter = 'alpha(opacity=100)';
}

/*
function init() {
	//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;
}
*/
