// Menu déroulant (utilise jquery)
var obj = null;
function checkHover() {
	if (obj) {
		obj.find('ul').fadeOut('fast');	
	} //if
} //checkHover
$(document).ready(function() {
	$('#menu > li.niv1').hover(function() {
		if (obj) {
			obj.find('ul').fadeOut('fast');
			obj = null;
		} //if
		
		$(this).find('ul').fadeIn('normal');
	}, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			0); // si vous souhaitez retarder la disparition, c'est ici
	});
});
// Fin de menu déroulant (utilise jquery)
// Round corner (utilise jquery)
$(function(){	
        $('#list_comments ol li').corner("round");
		$('#list_comments ol li .comment-author').corner("round top");
		$('#list_comments ol li .comment-meta').corner("round bottom");
		$('#search_results .post div.search_infos').corner("round");
		$('#thread li').corner("round");
		$('#thread li .threadauthor').corner("round");
		$('#thread li .threadpost').corner("round");
		$('#thread li .poststuff').corner("round");
		});
// Fin de Round corner (utilise jquery)