// JavaScript Document

$(document).ready(function() {
	$('.day:nth-child(7n)').addClass('end_week');
	$('.day:nth-child(7n+1)').addClass('start_week');
	
	$('.event').mouseover(function() {
		$(this).css('cursor', 'pointer');
	});
	
/*	$('.event').click(function() {
		$('#event_detail').show().position({ my:"center top", at:"center bottom", of:$(this), collision:"flip fit" });
	});
	
	$('#calendar > .selector').click(function() {
		$('#event_detail').hide();
	});*/
});
