$(document).ready(function() {
	$('.rowMois:not(.past)').each(function(){
		if ( $(this).parent().find('tr:last-child').hasClass('past') ) {
			$(this).addClass('past');
		};
	});
	$('#representations .past').hide();
	if ($('#representations .past').length) {
		$('#representations').before('<p style="margin:0 0 0 30px"><a style="font-weight:normal" id="boutonPrec" href="">Afficher les représentations passées</a></p>');
	};
	$('#boutonPrec').toggle(
		function () {
			$('#boutonPrec').html('Masquer les représentations passées');
			$('#representations .past').show();
     },
     function () {
			$('#boutonPrec').html('Afficher les représentations passées');
			$('#representations .past').hide();
     }
	);
	
	$('#historyBack').click(function(){
		history.back();
		return false;
	});
	
});
