$(document).ready(function() {
	
	$.post("home.php", function(resposta){
									 
		$("#conteudo").empty().append(resposta);
		
	});
		
	$(".link").livequery('click', function(){
		
		var href = $(this).attr('href');
		var control = $(this).attr('class');
	
		if(control != "no_js"){
			
			$("#conteudo").hide();
			$("#loading").show();		
			
			$("#conteudo").empty();
			$.post(href, function(resposta){
				
				$("#loading").fadeOut("slow");
				$("#conteudo").append(resposta).fadeIn("slow");
				
			});
			return false;
		}								   
	});
	
});
	
	

