$().ready(function() {

		// ----- Zoom photos -----
	  
		$("a[rel=gallery]").hover(
			function() {
				$(this).addClass('over');
			},
			function() {
				$(this).removeClass('over');
			}
		);

		$("a[rel=gallery]").fancybox({
			'imageScale': true,
			'padding': 10,
			'zoomOpacity': true,
			'zoomSpeedIn': 500,
			'zoomSpeedOut': 500,
			'zoomSpeedChange': 300,
			'overlayShow': true,
			'overlayColor': "#666666",
			'overlayOpacity': 0.3,
			'enableEscapeButton': true,
			'showCloseButton': true,
			'hideOnOverlayClick': true,
			'hideOnContentClick': false,
			'frameWidth':  560,
			'frameHeight':  340,
			'callbackOnStart': null,
			'callbackOnShow': null,
			'callbackOnClose': null,
			'centerOnScroll': true,
			'titlePosition': 'inside',
		  'transitionIn'	:	'elastic',
		  'transitionOut'	:	'elastic'
		});
		
		
		
		// ----- Recherche annuaire -----
		
		$('#motscles').focus();
		
		$('#motscles').keyup(function() {
		
			$('#contenu').load('recherche.php?motscles=' + $('#motscles').val());
		
		});
		
		
		
		// ----- Inscription newsletter -----
		
		$('#inscription').submit(function() {
		
			//alert($('#inscription').serialize());
			$('#contenu').load('inscription-newsletters.php?' + $('#inscription').serialize());
			return false;
		
		});
				
});
