//Affichage de l'arborescence
jQuery(document).ready(function() {
	
	try{
            if (contact_ok)
                    disp_formulaire(jQuery("#"+contact_ok));
	}
	catch(e){
	
	}
	
	jQuery("A[id^='open_contact']").click(function (){
		disp_formulaire(jQuery(this));
        return false;
	});
	
	jQuery('#close_contact').click(function (){
        jQuery.unblockUI(); 
	});	
});

function disp_formulaire(element_courant){
	jQuery('#contact_email').attr('value',element_courant.attr('href'));
	var str = element_courant.attr("id").replace("open_contact_","");
	str = "#hidden_title_"+str;
	jQuery('#titre_contact_form').html(jQuery(str).attr('value'));
        jQuery('#id_mail').val(element_courant.attr("id"));
        jQuery.blockUI({ css: { 
            width: '975px',
            top:  (jQuery(window).height() - 500) /2 + 'px', 
            left: ((jQuery(window).width() - 500) /2)-240 + 'px', 
                    border: 'none'
             },
             overlayCSS:  { 
                    backgroundColor: '#1c273c', 
                    opacity: 0.7 
             },
             message: jQuery('#form_contact') 
        });

}
