// Renomme les categories du menu du header pour gérer chaque couleur de chaque menu en CSS
$(document).ready(function(){
	// Differencie les categories de menu
	$('.liparent').each(function(numMenu) {
		$(this).addClass('menu-'+ (numMenu+1));
	});	
	
	// Active le formulaire de recherche
	if($('div#pSM').length > 0)
	{
		var msgDefault = 'Chercher une formation \340 distance';
		$('#txtSearch').focus(function() { var value = ($(this).val() == msgDefault ? '' : $(this).val()); $(this).val(value) });
		$('#txtSearch').blur(function() { var value = ($(this).val() == '' ? msgDefault : $(this).val()); $(this).val(value) });
		if($('#F_GieFormadis').length === 0 && $('.ValidEspacePro') === 0) { $('form#ctl04').submit(function() { if($('#txtSearch').val() == msgDefault || $('#txtSearch').val().length == 0) return false; }); }
	}
	
//	$('.siteMap a[href*=demande-documentation], .siteMap a[href*=confirmation]').each(function(){ $(this).parent().parent().parent().parent().remove(); });
});
