$(document).ready(function(){
	
	
	
	$('#infos').toggle(function(){
		$('#oms').fadeIn();
	}, function(){
		$('#oms').fadeOut();
	});

});