
var obj = null;
var enCours = false;

$(document).ready(function() {
	
	obj = $('#mainmenu li.first');
		
	$('#mainmenu > li').hover(function() {
				
		var tailleMenu = $(this).css("width");	
		$(this).find('ul').css("width", "200px");				
//		$(this).find('ul').css("z-index", 500);	
		
		var position = $(this).position();
		$(this).find('ul').css("left", position.left - ((200 - $(this).width())/2));
		if (obj) {
			obj.find('ul').stop(true,true).fadeOut("fast");
			obj.find('a').removeClass('active');
			$(this).find('a').addClass('active');
			obj.find('ul').fadeOut('fast');
			obj = null;
		}
		$(this).find('ul').fadeIn('fast');
	}, function() {
		obj = $(this);
		if(obj.find('ul').length > 0){
			obj.find('ul').stop(true,true).fadeOut("fast", function(){
				obj.find('a').removeClass('active');
			});
		}else{
			obj.find('a').removeClass('active');
		}
	});
		
		
});


