//Afficher calendrier pour sélection de date
function showdatepicker(id) {
    $(function () {
        $.datepicker.setDefaults($.datepicker.regional["fr"]);
        $(document.getElementById(id)).datepicker({
    	});
	})
};
//Variable de langue pour les booutons addthis
var addthis_config = {
     ui_language: "fr"
}
//Ajout de coins ronds à la volée sur certains div
window.onload=function(){
if(!NiftyCheck())
    return;
Rounded("div.BannerTexte","#FFFFFF","#E5E5E5");
Rounded("div.entreprise","#FFFFFF","#E5E5E5");
}
//Afficher/cacher un bloc de contenu
function showElement(id)
{
	el = document.getElementById(id);
	if (el.style.display == 'none')
	{
		el.style.display = '';
		el = document.getElementById(id);
	} else {
		el.style.display = 'none';
		el = document.getElementById(id);
	}
}

