$(document).ready(function() {
	$('#big ul li').each(function(){
		$a = $(this).find('a');
		$p = $(this).find('p');
		$a.html($a.html() +'<p>'+ $p.html() +'</p>');
		$p.remove();
	});	
	$('#big ul p').each(function(){
		 $(this).hide();				
	});		
	$('#ul_jla p').each(function(){
		 $(this).slideToggle();				
	});		
	$('#ul_quad a, #ul_reflets a').hover(function() {
		var $p = $(this).find('p');
		var t = setTimeout(function() {
			$p.slideToggle();
		}, 1000);
		$(this).data('timeout', t);
	}, function() {		
		clearTimeout($(this).data('timeout'));
		$(this).find('p').slideUp();
	});
});
