$(document).ready(function(){
	var slider = $('#calendar').bxSlider({
		displaySlideQty: 3,
		moveSlideQty: 3,
		controls: false,
		onAfterSlide: function(curr, tot) {
			$('.slidenumber').text(curr/3+1 + '/' + tot/3);
		}
	});
	$('#calendar').append('<div style="clear: both"></div>');
	$('#calendar-wrapper').hover(function() {
		$('.sidepanel').stop().fadeTo('slow', 1);
	}, function() {
		$('.sidepanel').stop().fadeTo('slow', 0);
	});
	$('#calendar-wrapper .next').click(function() {
		slider.goToNextSlide();
		return false;
	});
	$('#calendar-wrapper .prev').click(function() {
		slider.goToPreviousSlide();
		return false;
	});
});
