$(document).ready(function() {
	$('body').append( $('<div id="ready" />') );

	$('.date-navigation .previous, .date-navigation .next').hover(
		function(){
			$(this).animate({
				backgroundColor: '#f0f0f0'
			},'fast')
		},
		function(){
			$(this).animate({
				backgroundColor: '#fbfbfb'
			},'fast')
		}
	);
	
	$('#twoweek-calendar .day:not(.soldout, .call)').hover(
		function(){
			$(this).animate({
				backgroundColor: '#f2f2f2'
			},'fast')
		},
		function(){
			$(this).animate({
				backgroundColor: '#fff'
			},'fast')
		}
	).click(function(){
		parent.lightbox.close();
	});
});
