$(document).ready(function(){
	//Calendar
	$('.event-calendar-table tr:eq(0)').addClass('heading-months').next().addClass('heading-days');
	$('.event-calendar .heading-months a:first').prepend('&laquo;&nbsp;');
	$('.event-calendar .heading-months a:last').append('&nbsp;&raquo;');
	$('.event-calendar .heading-days td:eq(0)').addClass('sunday');
	$('.event-calendar-table tr:nth-child(n+3)').addClass('calendar-cnt');
	$('.event-calendar-table tr:nth-child(2n+4)').addClass('even');
	$('.calendar-cnt td').wrapInner('<div class="cell-cnt" />');
	$('.calendar-cnt .cell-cnt').each(function() {
		$(this).find('a').length > 0 ? $(this).find('a').eq(0).addClass('day') : $(this).wrapInner('<span class="day" />');
	});
	$('.calendar-cnt .cell-cnt > a').addClass('day');
	
	$('.cell-cnt .event-box').hover(
		function() {
			$(this).parents('.cell-cnt').eq(0).css('z-index', '1000');
		},
		function() {
			$(this).parents('.cell-cnt').eq(0).css('z-index', '0');
		}
	);
});
