
	$(document).ready(function(){

		// blue outline rollover for normal days
		$(".box").hover(function(){
		  $(this).addClass('bluebox');
		  $(this).find(".boxtop").addClass('blueboxtop');
				}, function() {
  		$(this).removeClass('bluebox');
  		$(this).find(".boxtop").removeClass('blueboxtop');
 		});
 		
 		// blue outline rollover for today
		$(".boxtoday").hover(function(){
		  $(this).addClass('blueboxtoday');
			$(this).find(".boxtoptoday").addClass('blueboxtoptoday');
				}, function() {
			$(this).removeClass('blueboxtoday');
			$(this).find(".boxtoptoday").removeClass('blueboxtoptoday');
		});
 		
 		$(".box").click(function(){
 			id = $(this).attr("id");
 			$("#info").load("public_events_view.php", "date=" + id );
 		});

 		$(".boxtoday").click(function(){
 			id = $(this).attr("id");
 			$("#info").load("public_events_view.php", "date=" + id );
 		});
 		
	});

