$(document).ready(function(){
	var hoverText = "Hover over the links to view more information about them.";
	$("#information").html(hoverText);
	$("td a").bind("mouseover",function(){
		var title = ($(this).attr("title") == "") ? "No information given about topic" : $(this).attr("title");

$("#information").html(title);										 
	});
	$("td a").bind("mouseout",function(){
		$("#information").html(hoverText);										 
	});
});
