// JavaScript Document

// script.js

function display_info_event(ide)
{
	if( $('#info_event_' + ide).css("display") == 'none')
	{
		$('#info_event_' + ide).show();
		$('#bt_info_event_' + ide).text("Masquer la description de l'événement");
	}
	else
	{
		$('#info_event_' + ide).hide();
		$('#bt_info_event_' + ide).text("En savoir plus");
	}
	
}// display_info_event(ide)
				
