$(document).ready(function() {
	/* caroussel accueil mise en avant */
	$('#carousel').jcarousel({scroll:4, visible:4, wrap:'circular'}) ;

	/* div identification */
	$('.btnlogin').click(function(){
		$('#identification').show();
	});
	$('.close').click(function(){
		$('#identification').hide();
	});
	$('#password_lost').click(function(){
		$('#div_password_lost').show();
		$('#identification').hide();
	})
	$('.close.password').click(function(){
		$('#div_password_lost').hide();
		$('#identification').show();
	});

	clignote($(".clignote"));
	clignote($(".clignote"));
	clignote($(".clignote"));
	clignote($(".clignote"));
	clignote($(".clignote"));
}) ;

function clignote(element)
{
	element.fadeOut(400).fadeIn(400).fadeOut(400).fadeIn(400).fadeOut(400).fadeIn(400).fadeOut(400).fadeIn(400);
}

function vibre(element)
{
	element.animate({left:"+=5px"},40).animate({top:"+=5px"},40)
    .animate({top:"-=10px"},40).animate({left:"-=10px"},40)
    .animate({top:"+=5px"},40).animate({left:"+=5px"},40)
    .animate({left:"+=5px"},40).animate({top:"+=5px"},40)
    .animate({top:"-=10px"},40).animate({left:"-=10px"},40)
    .animate({top:"+=5px"},40).animate({left:"+=5px"},40);
}
