$(function() {
	$('#primaryLinks .tabSoutien').hover(function() {
		$(this).find('ul').eq(0).addClass('visible');
	}, function() {
		$(this).find('ul').eq(0).removeClass('visible');
	});	
	$('#primaryLinks .tabConcours').hover(function() {
		$(this).find('ul').eq(0).addClass('visible');
	}, function() {
		$(this).find('ul').eq(0).removeClass('visible');
	});		
	$('#primaryLinks .tabFormation').hover(function() {
		$(this).find('ul').eq(0).addClass('visible');
	}, function() {
		$(this).find('ul').eq(0).removeClass('visible');
	});			
	
	$('.ui-state-default').hover(function() {
		$(this).addClass('ui-state-hover');
	}, function() {
		$(this).removeClass('ui-state-hover');
	});
});