$(function() {

	$(".doctrine").hide();
	//$(".content").toggle();
	$("#content0").show();

	$(".docs").click(function() {
		$(".doctrine").hide();
		var id = $(this).attr("title");
		$("#"+id).show();
		return false;
	});
	
	
	$("a.section").click(function() {
		$("div.inner2").append("<img src=images/ajax-loader.gif' id='loading' alt='...Carrengando...' />").show();
		var title = $(this).attr("title");
		$("div.inner1").load("content.php", { method: title, id: 0 }, function () {
			$("#loading").remove();
		});
	//	return false;			
	});
	
	

});