jQuery(document).ready(function() {
    $('#recup_mdp').click(function(){
		recupMdp();
		return false;
	});
	$('#retour_login').click(function(){
        tryLogin();
        return false;
    });
});

function recupMdp() {
	$('#form_slider').animate({
                left: -584
            });
}
function tryLogin() {
	$('#form_slider').animate({
                left: 0
            });
}
function affiche_msg(type, msg) {
	if (type == 'erreur') $('#valide').fadeOut('slow');
	if (type == 'valide') $('#erreur').fadeOut('slow');

	$('#' + type).fadeIn('slow');
    $('#' + type).html(msg);
}

