$(document).ready(function() {
	// SET UP THE CLICK TO SHOW MENU FUNCTION.....
	$("#fixturelist tr.next").mouseover(function(e) {
		$(this).css("cursor","pointer").attr("title","Click to open fixture predictor");
	}).click(function() {
		$.get("xhr-fixturepredictor.php",function(responseHTML) {
			$("#dialog").html(responseHTML).dialog("option","title","Fixture Predictor").dialog("option","width",920).dialog("option","height",170).dialog("open");
		});
	});
});
