$(document).ready(function(){
	/***NAVEGACAO DA PAGINA DOS DESTAQUES**/					   
	$('a.destaques').click(function(){
	    var end = $(this).attr('href');
		navegacao(end);
		post(end);
		return false;
	})
	/*****/
	
	$('a.destaques-nav-pro').click(function(){
		var end = $(this).attr('href');
		navegacao(end);	
		post(end);
		return false;
	})
	
	/*****/
	
	$('a.destaques-nav-ant').click(function(){

	
	    var end = $(this).attr('href');
		navegacao(end);
		post(end);
		return false;
	})
	
	/*****/
	
	
	function post(end)
	{
		$.post(end,{page:"destaques-2009"},
		function(data){
		$('#content2').fadeIn(400).html(data);            
		}) 
	}
	
	/*****/
	
	function navegacao(end)
	{
		
		var endant = "";
		var endpro = "";
		
		if(end=="editorial")
		{
			
			endant = "outra-vez-campea"
			endpro = "destaques-2009-1"
		}
		if(end=="destaques-2009-1")
		{
			
			endant = "editorial"
			endpro = "entrevista"
		}
		if(end=="entrevista")
		{
			
			endant = "destaques-2009-1"
			endpro = "outra-vez-campea"
		}
		if(end=="outra-vez-campea")
		{
			
			endant = "entrevista"
			endpro = "editorial"
		}		
		
		$('a.destaques-nav-ant').attr('href',endant);
		$('a.destaques-nav-pro').attr('href',endpro);
	}
	
	/*****/
	
	$('input[name=botaoContato]').click(function(){
		  var  page    = $('#fale').attr('action');
		  $.post(page,
		  $('#fale').serialize(),
		  function(data){
		  $('#content2').html(data);
		  $('#content2').load('obrigado.php');
		  })
       return false;
	})

	$('a.externo').livequery('click',function(){
		  var link = $(this).attr('href');
		  window.open(link);
		  return false;
	})

})

