var gt;

$(document).ready(function() {

	$('.recrute').stop().animate({right:0,opacity:1},500);

	$('.link').mouseover(function() {
	
		box = $('.box',this);
		
		if (box.is('.hidden')) {
		
			$('#header .box.active').stop().removeClass('active').addClass('hidden');
			box.stop().addClass('active').removeClass('hidden').animate({opacity:0.8},250);
			
			clearTimeout(gt);
			gt = setTimeout(function() {
				box.stop().removeClass('active').addClass('hidden');
			},5000);
		
		}
	
	});
	
	$('#header').mouseout(function() {
	
		$('#header .box.active').stop().removeClass('active').addClass('hidden');
		clearTimeout(gt);
	
	});

});
