$(document).ready(function() {

	$('#cycle').cycle({
		fx: 'fade',
		speed: 500,
		timeout: 4000,
		next: "#cycle"
	});
	
	$("form#connexion input").click(function(){		 
		if($(this).attr("value")=="nom d'usager" || $(this).attr("value")=="mot de passe" || $(this).attr("value")=="username" || $(this).attr("value")=="password"){
			$(this).attr("value","");
		}					 
	})

});
