var loading = '<img src = "/images/ajax-loader.gif" />'; 

// Initialisation de l'AjaxBox
function ajaxbox_init()
{
	box = new Ajaxbox();
	box.overlay.onclick = function() { box.hide(); }
}

function show(text)
{
	//box = new Ajaxbox();
	box.show();
	box.update('<p>'+text+'<br /><br /><input type="button" value="OK" onclick="box.hide();"/></p>');
}

// gestion de l'affichage des m�tiers en fonction du secteur choisi
function getMetier(name,val)
{
	
	new Ajax.Request('/ajax_metier.php',
	{
		method: 'post',
		parameters: 'val='+val+'&name='+name,
		onSuccess: function(ajax)
		{
			$(name).update(ajax.responseText);
		}
	});
}



function afficher(id)
{

	new Effect.toggle('sentence'+id,'blind');
	
}

