$(function(){
	// console.log(location.hash);

	if (location.hash.length == 5)
		showInfo(location.hash.substr(1)); // On affiche la formation correspondante
		
	
	$('ul#liens-formation li a').click(function(evt){		
		var target = $(this).attr('href');
		target = target.substr(1);
		showInfo(target)
	
	});
	
	

});

function showInfo(target) {
	$('ul#liens-formation li.active').removeClass('active');
	$('ul#liens-formation li.' + target).addClass('active');

	$('div#infos div.active').removeClass('active').hide();
	$('div#infos div#' + target).addClass('active').show();

}

