function initEvents()
{
	// Lissage  des polices avec Cufon
	
	Cufon.replace("h2");
	Cufon.replace("h3");
	
	$("#mot-de-passe-oublie").click(function() {
		// Scroll
		var target_offset = $("#creer-un-compte-alerte").offset();
		var target_top = target_offset.top - 100;
		
		$("#form_inscription").hide();
		$("#form_oublie").fadeIn();
		$('html, body').animate({scrollTop:target_top}, 500);
	});
	
	$("#creer-un-compte-alerte").click(function() {
		// Scroll
		var target_offset = $("#creer-un-compte-alerte").offset();
		var target_top = target_offset.top - 100;
		
		$("#form_oublie").hide();
		$("#form_inscription").fadeIn();
		$('html, body').animate({scrollTop:target_top}, 500);
	});
	
	$("#creer-un-compte-alerte2").click(function() {
		// Scroll
		var target_offset = $("#creer-un-compte-alerte").offset();
		var target_top = target_offset.top - 100;

		$("#form_oublie").hide();
		$("#form_inscription").fadeIn();
		$('html, body').animate({scrollTop:target_top}, 500);
	});
}
