$(document).ready(function() {

	$("#btnsearch").click(function(){
		if ($("#fld_search").val()){			
			$("#form_search").submit();
		}
		return false;
	});

	$.datepicker.setDefaults( $.datepicker.regional[ "fr" ] );

	$(".zoom-slideshow").fancybox({
		'padding'			: 0,
		'titleShow'			: false,
		'width'				: 720,
		'height'			: 450,
		'type'				: 'iframe',
		'scrolling' 		: 'no'
	});

	$(".zoom").fancybox({
		'titleShow'			: true,
		'titlePosition' 	: 'over'
		
	});
	
	$('.cycle').cycle('fade');
	
	$("a.zoom-map").click(function() {
		action = $(this).attr('rel');
		$.fancybox({
				
				'autoScale'		: false,
				'autoDimensions': false,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none',
				'title'			: this.title,
				'margin'		: 5,
				'padding'		: 10,
				'width'			: 750,
				'height'		: 450,
				'href'			: this.href,
				'type'			: 'swf',
				'swf'			: {
					'wmode'				: 'transparent',
					'allowfullscreen'	: 'true',
					'allowScriptAccess' : 'always',
					'FlashVars'			: 'zoomifyImagePath=/images/site/'+action
				}
			});
	 
		return false;
	}); 
	
	//adding class for alternating color
	$('.bloc-contenu table tr:even').addClass('tr-alt');

});
