// JavaScript Document
$(document).ready(function()
{    
	
	
	$('#slide').css("visibility", "visible");	

	$('#foto').cycle({
		fx: 'fade' 		
	});	
	
	$("a[rel='box']").colorbox({maxWidth:777, maxHeight:777 });	
	
	$('#foto').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		next: '#proximo',
		prev: '#anterior'
	});
	
	$('#slide').cycle('pause');
});


function init(){

       // alert('teste');
	
	$('#carregando').fadeOut(500, 
            function()
            {
            $('#site').fadeIn(500, function()
            {
                            $('#menu').fadeIn(500, function()
                            {
                                    $('#conteudo_home').fadeIn(500);
                            });
                    });
            });
	
	}


function abreajax(secao)
{	
	$("#conteudo_home").fadeOut(500, function()
	  {
		$("#carregando_inter").fadeIn(500, function(){											
			$.post("inc/switch.php", { "secao": secao }, callback_abreajax, "text");																											
		});
	  });	
	
}

function callback_abreajax(data)
{	
	$("#conteudo_home").html(data);	
	$("#carregando_inter").fadeOut(500,function()
	{											
		$("#conteudo_home").fadeIn(500);												
	});
	
	
	$("a[rel='iframe']").colorbox({iframe:true, innerWidth:970, innerHeight:570});	
	$("a[rel='box']").colorbox({maxWidth:777, maxHeight:777 });		
	
}



