var obj = null;
function checkHover() {
	if (obj) {
		obj.find('ul').fadeOut('fast');	
	}
}
$(document).ready(function()
{ 	
	$('.liste').hover(function() {
		if (obj) {
			obj.find('ul').fadeOut('fast');
			obj = null;
		}
		
		$(this).find('ul').fadeIn('fast');
	}, function() {
		obj = $(this);
		setTimeout(
			"checkHover()",
			200);
	});
	$('#france').live('hover', function() {
		$('#no').text('French');
	});
	$('#anglais').live('hover', function() {
		$('#no').text('English');
	});
	$('.flamand').live('hover', function() {
		$('#no').text('Flemish');
	});
	$('#turquie').live('hover', function() {
		$('#no').text('Turkish');
	});
	$('#langues').live('mouseout', function() {
		$('#no').text('');
	});
});

