// JavaScript Document
$(document).ready(function(){
	//inicio do conteudo (home)
	$.get("home.php",
	//{pag:"home"},
	function(conteudo){
		$(".conteudo").html(conteudo).fadeIn("slow")
	})
//fim do conteudo (home)
	
	//inicio do conteudo (ajax)
$('a[rel=ajax]').click(function () {
    pagina = ""+$(this).attr('href')
		$.ajax({method:"get",
			beforeSend: function(){
				$("div.carregando").show()
				$('.conteudo').fadeIn(3000)},//slideDown fadeIn show ou slideUp
			complete: function(){
				$("div.carregando").fadeOut("slow")},//fadeOut ou slideUp
			success: function(html){
				//$('.conteudo').fadeOut(200).html(html).show("slow")
				$(".conteudo").load(pagina);
		}
		})//fim do $.ajax(
		return false
	})//fim do $("div.menu li a").click	

	//============================================================================
	//inicio do conteudo (ajax)
$('a[rel=ajax2]').click(function () {
    pagina = ""+$(this).attr('href=http://')
		$.ajax({method:"get",
			beforeSend: function(){
				$("div.carregando").show()
				$('.conteudo').fadeIn(3000)},//slideDown fadeIn show ou slideUp
			complete: function(){
				$("div.carregando").fadeOut("slow")},//fadeOut ou slideUp
			success: function(html){
				//$('.conteudo').fadeOut(200).html(html).show("slow")
				$(".conteudo").load(pagina);
		}
		})//fim do $.ajax(
		return false
	})//fim do $("div.menu li a").click	
  
})//fim do conteudo (ajax)
//============================================================================



