
function rotate(link, el_id)
{
	rotate.oldlink = rotate.oldlink || document.getElementById('startlink');
	var el, tbl_id, tbl_ids = [ 'mainview' , 'chattanooga', 'columbia', 'johnsoncity', 'cookeville', 'jackson', 'knoxville', 'nashville', 'countyhours'];
	for (id in tbl_ids)
		if (el = document.getElementById(tbl_id = tbl_ids[id]))
        		el.style.display = (el_id != tbl_id) ? 'none' : '';
		link.className = 'rotatelinkon';
	if (rotate.oldlink != link)
	{
		rotate.oldlink.className = 'rotatelink';
		rotate.oldlink = link;
	}
	return false;
}


function rotate2(link, el_id)
{
	rotate.oldlink = rotate.oldlink || document.getElementById('startlink');
	var el, tbl_id, tbl_ids = [ 'mainview' , 'chattanooga', ];
	for (id in tbl_ids)
		if (el = document.getElementById(tbl_id = tbl_ids[id]))
        		el.style.display = (el_id != tbl_id) ? 'none' : '';
		link.className = 'rotatelink2on';
	if (rotate.oldlink != link)
	{
		rotate.oldlink.className = 'rotatelink2';
		rotate.oldlink = link;
	}
	return false;
}

