$(document).ready(function(){ 	

   $("a.in").click(function(){ 
		$("#content").empty(); 
		var path = $(this).attr("href");
		$('#content').append('');
		$("#content").animate({left: '+=50', width: 'toggle'},1000, function(){
			$("#content").animate({left: '-=50', width: 'toggle'},1000, function(){
				
				$("#content").load(  path + ' #page', function(){
			
					$('h1').load(path +' #h1_txt');
				});
		
			});
		
		});
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		

		
		
   return false; 
   });
});

