// JavaScript Document

$(document).ready(function(){
						   
	function loadContent(ti,ct,el){
		
		$('#contenu #scrollzone').animate({scrollTop:0})
	
		$("#contenu").animate({right:'0px'},{queue:false,duration:500,easing:'easeOutQuad'});
		
		$('#contenu h3').text(ti);
		
		$('#contenu #scrollzone').load(ct);
		
		$('a').removeClass('actif');
		el.addClass('actif');
		
		
	
	
	}
						   
	$("#spec_m").click(function(){loadContent("le spectacle",'contents/spectacle.html',$(this))})	
	
	$("#bio_m").click(function(){loadContent("biographies",'contents/bio.html',$(this))})	
	
	$("#photos_m").click(function(){loadContent("photos",'contents/photos.php',$(this))})
	
	$("#videos").click(function(){loadContent("videos",'contents/videos.html',$(this))})		
	
	$("#people_m").click(function(){loadContent("Ils étaient là",'contents/people.php',$(this))})	
	
	$("#presse").click(function(){loadContent("Presse",'contents/presse.html',$(this))})	
	
	$("#contact_m").click(function(){loadContent("contact",'contents/contact.html',$(this))})	
						   
						   
});
