// JavaScript Document
$(document).ready(function(){
	$("h1").animate({
		width:'show',
		opacity:'show'
	});
	$("input[@value='votre email']").click(function(){
		$(this).val('');
	});
	$("#sendok").animate({width: 'show'}, 'slow')
});
