$(function(){
	$("body.home #container").tabs({
		fx: { opacity: "toggle" }
	});
	$("a[rel=external]").attr("target", "_blank");
	$("#timetables a").each(function(){
		var targetId = $(this).attr("href");
		var target = $(targetId);
		target.dialog({
			autoOpen: false,
			buttons: {
				"Close": function(){
					$(this).dialog("close");
				},
				"Print": function(){
					if (window.print) {
						window.print();
					} else {
						alert("Your browser does not support 'print' buttons on webpages. Please use your browser's built-in printing functionality");
					}
				}
			},
			dialogClass: "timetable",
			draggable: false,
			modal: true,
			width: 720,
			title: target.children("h3").text(),
			close: function(event, ui){
				$("body").removeClass("timetable-print");
			}
		});
		$(this).click(function(e){
			$("body").addClass("timetable-print");
			target.dialog("open");
			e.preventDefault();
		});
	});
	$("tbody tr:nth-child(2n)").addClass("odd");
});