$(document).ready(function() {
				
	/* ADD ONCLICK BEHAVIOR FOR WHOLE WRAPPER DIV */
	/* Use the value of the HREF of the first nested anchor to set the link value
	$(".monthTable").click(function() {
		document.location = $(this).find(".number a").attr("href");
	});
	 */
	 
	/* CONTROL HOVER STATES */
	/* While hovering over the month wrapper, simultaneously swap
	out two styles for the links, and swap classes of the wrapper itself.
	This circumvents IE 6s failure to support the :hover selector on
	anything but anchors */
	$(".monthTable").hover(
		function () {
			$(this).addClass("monthTableHover");
			$(this).find(".number").addClass("numberHover");
			//$(this).find(".course a").addClass("numberHover");
		},
		function () {
			$(this).removeClass("monthTableHover");
			$(this).find(".number").removeClass("numberHover");
			//$(this).find(".course a").removeClass("numberHover");
		}
	)
	
	// TURN ON SELECTED COURSE
	var selected_course = $(".course .selected");
	selected_course.css("color","#eb6e1f");

});