$(document).ready(function(){

	// Homepage date picker
	$.datepicker.setDefaults( $.datepicker.regional[ "" ] );
	$('#search-date').datepicker($.datepicker.regional[ "fr" ]);


	// Homepage slideshow
	$('#slider-one').movingBoxes({
		startPanel   : 2,      // start with this panel
		width        : 327,    // overall width of movingBoxes (not including navigation arrows)
		imageRatio   : 1.3625,      // Image ration set to 1:1 (square image)
		wrap         : true,   // if true, the panel will "wrap" (it really rewinds/fast forwards) at the ends
		buildNav     : false,   // if true, navigation links will be added
		panelType    : '> li', // selector to find the immediate ">" children "li" of "#slider-one" in this case
		panelWidth:1,
		fixedHeight  : true,
		reducedSize:1,
		navFormatter : function(){ return "&#9679;"; } // function which returns the navigation text for each panel
	});
	
	// Email obfuscation
	$('a.email,span.email a').each(function()
	{
		var link = $(this).attr('href');
		var text = $(this).html();
		
		link = link.replace(/\(at\)/g,'@');
		link = link.replace(/\(dot\)/g,'.');
		
		text = text.replace(/\(at\)/g,'@');
		text = text.replace(/\(dot\)/g,'.');
		
		$(this).attr('href', link);
		$(this).html( text);
	});

});
