
	var markEvents = function($td, thisDate, month, year)
	{
		if (events['d' + thisDate.getTime()]) {
			var eventName = events['d' + thisDate.getTime()];
			$td.bind(
				'click',
				function()
				{
					window.location = "/fr/activites-expositions/activites/0-" + eventName + '/';
				}
			).addClass('calendar-event');
		}
	}
	


$(document).ready(function(){
	// Slider en haut a gauche
	$("#slider").easySlider({
		nextText: '>',
		prevText: '<',
		auto: true, 
		speed: 800,
		pause: 4000,
		continuous: true
	});
	
	// Album
	$("a.album-image").lightBox();

	$("a.media").media();

});

