
$(document).ready(function() {

	
	/*****************************/
	/********* home events *******/
	/*****************************/
	/*défilement des bannieres */
	$('.sliderHome').cycle({ 
		fx:      'fade', 
		speed:    600, 
		timeout:  8000 
	});
	
	/*défilement des actualités */
	$('.sliderLabels').cycle({ 
		fx:      'scrollDown', 
		speed:    600, 
		timeout:  6000 
	});
	
	/*****************************/
	/****** content events *******/
	/*****************************/
	$(".spip_documents a[type^=image]:has(img)").attr('rel','fancybox');
	/*lancement fancybox */
	$(".fancybox, .spip_documents a[type^=image]:has(img)").fancybox({
		'titlePosition'		: 'outside',
		'overlayColor'		: '#000',
		'overlayOpacity'	: 0.5,
		'titlePosition' : 'over',
		'titleShow':false
	});
	//, .spip_documents a:has(img)
	
	/********************************/
	/** carrousel (page references) */
	/********************************/
	/* lancement jcarrousel */
    $('#mycarousel').jcarousel({
		wrap: 'circular'
	});
	
	/*MAJ des images */
	$('#mycarousel a').click(function($event){
		$event.preventDefault();
		$this = $(this);
		$href = $this.attr('href');
		$('#main-reference-img').fadeOut('fast',function(){
			$(this).attr('src',$href);
			$(this).fadeIn('normal');
			$num = $this.attr('id').substr(1);
			$('#startfancybox').attr('href','#fancy'+$num);
		});
	});
	
	/*click sur l'image principale */
	$('#startfancybox').click(function($event){
		$event.preventDefault();
		
		$this = $(this);
		$href = $this.attr('href');
		$(''+$href).click();
	});
	
	
	/*********************************************************************************/
	/*********** DISPARITION DES MESSAGES D'ERREURS POUR LES FORMULAIRES *************/
	$("#formulaire_login .obligatoire span.erreur_message").click(function(ev){
	$(this).next('input').focus();
	});
	$("#formulaire_login .obligatoire input").focus(function(ev){
	$error = $(this).prev('span.erreur_message:visible');
	$error.fadeOut('fast');
	}); 
	
	
});

