$(function() { 
	
	$('a.Spectacle').click(function() {
		$('div#ContenuPage').hide('blind', null, 500);
		setTimeout("ShowSpectacle("+$(this).attr('id')+")", 500);
	});
})


function ShowSpectacle(id) {
	
	$.ajax({
		type: "POST",
		url: "contenu/spectacles/load_spectacle.php",
		data: "id="+id,
		success: function(details){
			$('div#ContenuPageTexte').html(details);
			$('div#ContenuPage').show('blind');
		}
	});	
}