function tabOver(item, color) {
	var link = item.getElementsByTagName("a")[0];
	item.style.backgroundColor = color;
	link.style.color = 'white';
	window.status = link.href;
	item.onclick = function() {
		document.location = link.href;
	}
	item.onmouseout = function() {
		item.style.backgroundColor = '';
		link.style.color = '';
		window.status = '';
	}
}
