$(document).ready(function() {
	// hover (questions:alewin@axecibles.com)
	
$('#encart').css('opacity','0.5').hover(
		function(){
			$(this).stop(1,1).fadeTo(250,'1');
			$('#panel-boite').stop(1,1).animate({width: 'toggle'});
		},
		function(){
			$(this).stop(1,1).fadeTo(250,'0.5');
			$('#panel-boite').stop(1,1).animate({width: 'toggle'});
		}
	);
});
