$(document).ready(function(){
	$(".content").animate({opacity: 1},1200,'easeInExpo');
	$("#cadre").stop().animate({width: "870px"},1000);
	
	
	jQuery(".menu_ul li a").bind('click',function(){
		var _id = this.id
		
			if(_id != "accueil"){
			$("#main").removeClass('background');
		}else{
			$("#main").addClass('background');
		}
		
		$(".menu_ul li a img").removeClass('actif');
		$(".content").animate({opacity: 0},200);
		$('#cadre').stop().animate({
			width: "10px"
		},300, function(){
			
			jQuery("#main").load("./"+_id+".html");
			
		
			
			setTimeout('$(".content").animate({opacity: 1},650,"easeInExpo");$("#cadre").stop().animate({width: "870px"},600);',300);
			
		});
		
		
		$("#"+_id+" img").addClass('actif');
		return false;
	});
	



// VIDEO
$(".videodim").bind("click",function(){
	alert(this.id);
});
});

