$().ready(function() {

	/*
	$('.lavalamp').ready(function() {
		$('.lavalamp').lavaLamp({
			fx: 'backout',
			speed: 700
		});
	});
	
	startItem: $('.lavalamp li a').index($('.here'))
	*/

	// ----- slider header -----
	
  $('#slider').cycle({
		fx: 'fade',
		speed:    1000, 
    timeout:  5000 
	});

  $('#homelogos').cycle({
		fx: 'scrollLeft,scrollDown,scrollRight,scrollUp',
		easing: 'easeInBack',
		speed: 500, 
    timeout: 3000 
	});

  $('.animation').cycle({
		fx: 'scrollDown',
		easing: 'easeOutBounce',
		delay: -2000,
    timeout: 3000,
    next: '.next'
	});

	
	// ----- recherche -----
	
	if ($('#query').val() == '') blurSearch();
	$('#query').bind('focus', focusSearch);
	$('#query').bind('blur', blurSearch);
	
	
	
	// ----- zoom photos -----
	
	$("a[rel=gallery]").fancybox({
		'imageScale': true,
		'padding': 10,
		'zoomOpacity': true,
		'zoomSpeedIn': 500,
		'zoomSpeedOut': 500,
		'zoomSpeedChange': 300,
		'overlayShow': true,
		'overlayColor': "#ffffff",
		'overlayOpacity': 0.5,
		'enableEscapeButton': true,
		'showCloseButton': true,
		'hideOnOverlayClick': true,
		'hideOnContentClick': false,
		'callbackOnStart': null,
		'callbackOnShow': null,
		'callbackOnClose': null,
		'centerOnScroll': true,
		'titlePosition': 'inside',
	  'transitionIn'	:	'elastic',
	  'transitionOut'	:	'elastic'
	});
	
	
	// ----- zoom vidéos -----
	
	$("a[class=zoom]").fancybox({
		'imageScale': true,
		'padding': 10,
		'zoomOpacity': true,
		'zoomSpeedIn': 500,
		'zoomSpeedOut': 500,
		'zoomSpeedChange': 300,
		'overlayShow': true,
		'overlayColor': "#ffffff",
		'overlayOpacity': 0.5,
		'enableEscapeButton': true,
		'showCloseButton': true,
		'hideOnOverlayClick': true,
		'hideOnContentClick': false,
		'callbackOnStart': null,
		'callbackOnShow': null,
		'callbackOnClose': null,
		'centerOnScroll': true,
		'titlePosition': 'inside',
	  'transitionIn'	:	'elastic',
	  'transitionOut'	:	'elastic'
	});
	
	
	// ----- recherche marraines -----
	
	$('#recherchemarraines select').change(function() {
 		
		$.post('/marraines/update-nombre-marraines.php', $('#recherchemarraines').serialize(), function(nbre){
			$('#resultat').html(nbre);
		});
	
	});
	
	$('#recherchemarraines input').keyup(function() {
 		
		$.post('/marraines/update-nombre-marraines.php', $('#recherchemarraines').serialize(), function(nbre){
			$('#resultat').html(nbre);
		});
	
	});
	

	// ----- Quiz -----
	
	$("a[rel=quiz]").fancybox({
		'imageScale': true,
		'padding': 10,
		'zoomOpacity': true,
		'zoomSpeedIn': 500,
		'zoomSpeedOut': 500,
		'zoomSpeedChange': 300,
		'overlayShow': true,
		'overlayColor': "#ffffff",
		'overlayOpacity': 0.5,
		'enableEscapeButton': true,
		'showCloseButton': true,
		'hideOnOverlayClick': true,
		'hideOnContentClick': false,
		'callbackOnStart': null,
		'callbackOnShow': null,
		'callbackOnClose': null,
		'centerOnScroll': true,
		'titlePosition': 'inside',
	  'transitionIn'	:	'elastic',
	  'transitionOut'	:	'elastic',
	  'type' : 'iframe',
	  'width' : 530,
	  'height' : 400,
	  'scrolling' : 'no'
	});

});


function focusSearch() {
  if ($('#query').val() == 'Recherche...') {
    $('#query').val('');
    $('#query').removeClass('blur').addClass('focus');
  }
}

function blurSearch() {
  if ($('#query').val() == '') {
    $('#query').val('Recherche...');
    $('#query').removeClass('focus').addClass('blur');
  }
}



