
function moveBlock(page, target) {

	$("#block").animate( { left:"65%"}, 1000 )
         .animate( { left:"65%" } , 300 ).animate( { left:"10px" } , 1000 );

    if(!target)
		target  = "content_";
	
	url = domain+"index.php?page=AJAXresto&f="+page;
       
	//$("#content_").jScrollPane();
	$("#"+target).fadeOut(2000, function () {
       	$.get(url, "", function(data) {
	   		$("#"+target).html(data);
	   		
	   		$("#"+target).fadeIn("slow");
	   		//$("#content_").jScrollPane();
		});
    });
  
	
	
}
