$(document).ready(function() { 


 $('.slideshow').cycle({
        fx: 'fade',
		pause:         1,
		random:        1,
		 timeout:       6000
		
		});

$(window).scroll(function () {


/*------------------------
#back-top
----*/
$("#back-top").hide();
			if ($(this).scrollTop() > 100) {
				$('#back-top').fadeIn();
			} else {
				$('#back-top').fadeOut();
			}
		});
		
	
		$('#back-top a').click(function () {
			$('body,html').animate({
				scrollTop: 0
			}, 800);
			return false;
		});
	
	
	
	$("form#payPalForm").submit(function() {

	$('input.required').each(function() {
		 if ($(this).val() == '') {           
			$(this).addClass('highlight');
		}else{
		$(this).removeClass('highlight');
		}
	});
	
	 if ($('input.required.highlight').size() > 0) {
	   alert("Tous les champs sont obligatoires ; veuillez vous assurer de remplir les champs en rouge.");
		return false;
	 }

});


	
	 $('a[href=#top]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });
	

	
});
