$(document).ready(function() {
/*effect on search form*/

	/*$('#accesE_display').mouseenter(function() {
			$('.login').animate({width:"380px"}, {queue:false, duration:500});
			$('.accesE').animate({width:"0px"}, {queue:false, duration:500});

    });

		$('.login').mouseleave(function() {
			$('.login').animate({width:"0px"}, {queue:false, duration:500});
			$('.accesE').animate({width:"136px"}, {queue:false, duration:500});
		});
*/
     $('#rech_display').mouseenter(function() {
			$('.recherche').animate({width:"150px"}, {queue:false, duration:500});
			$('.rech').animate({width:"0px"}, {queue:false, duration:500});
                        $('#loupe').animate({width:"0px"}, {queue:false, duration:500});


    });

		$('.recherche').mouseleave(function() {
			$('.recherche').animate({width:"0px"}, {queue:false, duration:500});
			$('.rech').animate({width:"36px"}, {queue:false, duration:500});
                        $('#loupe').animate({width:"18px"}, {queue:false, duration:500});

		});

});

