var left_pos = new Array("", "120px", "233px", "345px", "455px", "565px", "680px");
var ro_txt = new Array("", "The Basics...", "Identifying <br />the officers...", "Beat maps and<br /> new HQs...", "What is community<br />  policing?", "Neighborhood outreach...", "How to stay <br />informed...");
var episode_anchors = $('t').getElementsByTagName("a");
for (var i = 0; i<episode_anchors.length; i++)
{
	episode_anchors[i].onmouseover = function ()
	{
		var b = (this.firstChild.className).split(" ");
		var e_num = (b[1]);
		
		//show the roll over
		Element.show ('ro');
		//set the left cord
		$('ro').style.left = left_pos[e_num];
		//update the text
		$('ro').innerHTML = "<p>" + ro_txt[e_num] + "</p>";
		
	}
	
	episode_anchors[i].onmouseout = function ()
	{
		//hide the ro
		Element.hide ('ro');
	
	}
}
