$(function(){

	$(".more-agenda").hide();

	$(".vevent").click(function (e) {
		if ($(e.target).is('a')) return;
		$(this).toggleClass('open');
		$(this).find(".more-agenda").toggle();
	});

	jQuery('a[rel*=lightbox]').lightBox({
		maxHeight: 700, 
		maxWidth: 1000
	});

	
	// The "more" link text
	var moreText = "+  Commentaires";
	// The "less" link text
	var lessText = "- Masquer les commentaires";

	// Sets the .more-block div to the specified height and hides any content that overflows
	$("#respond").hide();

	// The section added to the bottom of the "more-agenda" div
	$("#respond").before('<a href="#" class="commentaires"></a>');

	$("a.commentaires").text(moreText);

	$(".commentaires").toggle(function() {
			$("#respond").show();
			$(this).text(lessText);
		}, function() {
			$("#respond").hide();
			$(this).text(moreText);
	});
});
