$(document).ready( function () {
	
	$("#global .table-matieres .section a").click(function() {
		$("#global .table-matieres .section a").removeClass("courant");
		$(this).addClass("courant");
		showPage($(this).attr("rel"));
		return false;
	});
	
	$("#global .pages .page").hide();
	$("#global .table-matieres .section a:first").click();
	
	// Gestion des PJs
	$(".pjs .pj").each(function() {
		var prev = $(this).prev(".pj");
		if(prev == null || prev.attr("groupe") != $(this).attr("groupe")) {
			$(this).createPrepend('div', {className: 'sep'}, '///////////////////////////////////////////////////////////////////////////////////////////////////////');
			$(this).createPrepend('div', {className: 'titre-pj'}, $(this).attr("groupe"));
		}
	});
	
	// Gestion des photos
	$(".photo-gallery").jqGalScroll({height: 400, width: 530});
});

function showPage(id) {
	if($("#global .pages .page:visible").length != 0) {
		$("#global .pages .page:visible").slideUp("normal", function() {
			$("#global .pages #page"+id).slideDown("normal");
		});
	} else {
		$("#global .pages #page"+id).show();
	}
}

