$(function() {

	$('.slideshow').cycle({
	   fx:     'scrollDown',
			   speed:    500,
	   timeout:  8000,
	   random:  1
	});
	
	$('.header').cycle({
   fx:     'scrollLeft',
           speed:    500,
   timeout:  5000,
   random:  1
});

	//validation form étape 2
	$("form[name=paypal]").submit(function(e){
		
		var msg = "Les champs suivant doivent être remplis:\n\n";
		var vides = "";
		
		$("form[name=paypal] input").each(function(){
			if ($(this).val() == "") {
				vides = vides+"- "+$(this).attr("title")+"\n";
			}
		});
		
		if (vides!="") {
			alert(msg+vides);
			return false;
		} else {
			return true;
		}
	});

});
