$(document).ready(function(){
	$(".loggedOut a").click(function(){
		$("#loginBox").attr("style","display:block;");
	});
	$("#loginBox_close").click(function(){
		$("#loginBox").attr("style","display:none;");
	});
	$("#routes table tbody tr").mouseover(function(){
		$(this).addClass("over");
	});
	$("#routes table tbody tr").click(function(){
		window.location.href= $(this).children("td").children("a").attr("href");
	});
	$("#routes table tbody tr").mouseout(function(){
		$(this).removeClass("over");
	});
});
