/**
 * @author Adib
 */

 $(document).ready(function () {
 	// Neutraliser tous les comportements no-js
	$('body').removeClass('no-js').addClass('js');
	
	// Créer les coins arrondis
	$(".rounded5").corner("5px");
	$(".rounded5top").corner("5px top");
	$(".rounded5bottom").corner("5px bottom");
	
	// faire apparaître les popups des icônes
	PopupsIcones();
	
	// Menu onglets
	MenuOnglets();
	
	// Popups formations
	//PopupsFormations();
});

function PopupsIcones() {
	$('#header a').hover(
		function () {
			$(this).children('span').corner('5px bottom').slideDown('fast');
		},
		function () {
			$(this).children('span').slideUp('fast');
		}
	);
}

function MenuOnglets() {
	$('#tabs li.level1').hover(
		function () {
			$(this).children('ul').fadeIn('normal');
		},
		function () {
			$(this).children('ul').fadeOut('normal');
		}
	);	
}

function PopupsFormations() {
	$('div.diag-container div.description').hover(
		function () {
			$(this).children('div.popup').fadeIn('fast');
		},
		function () {
			$(this).children('div.popup').fadeOut('fast');
		}
	);
	
	$('div.diag-container div.description div.popup').hover(
		function () {
			$(this).fadeOut('fast');
		},
		null
	);	
}