$(document).ready(function(){
	$("#menu a").click(function(){
		page=$(this).attr("href");
		$.ajax({
			url: "content/"+page,
			cache:false,
			success:function(html){
				afficher(html);
			},
			error:function(XMLHttpRequest,textStatus, errorThrown){
				alert(textStatus);
			}
		})
		return false;
	});
});	

function afficher(data){
$("#content").fadeOut(500,function(){
	$("#content").empty();
	$("#content").append(data);
	$("#content").fadeIn(1000);
})
}

