// mostra includes
function show_inc(x)
{
	$('#bloco div').fadeOut(900,function(){
		     if(x == 'inc_agencia')     { setTimeout("s_agen()", 1200) }
		else if(x == 'inc_cartorios')   { setTimeout("s_cart()", 1200) }
		else if(x == 'inc_especificos') { setTimeout("s_espe()", 1200) }
		else if(x == 'inc_pacote')      { setTimeout("s_paco()", 1200) }
		else if(x == 'inc_tcs')         { setTimeout("s_tcs()",  1200) }
	})
}

// efeitos do menu
function s_agen()  { $('#inc_agencia').fadeIn(1000) }
function s_cart()  { $('#inc_cartorios').fadeIn(1000) }
function s_espe()  { $('#inc_especificos').fadeIn(1000) }
function s_paco()  { $('#inc_pacote').fadeIn(1000) }
function s_tcs()   { $('#inc_tcs').fadeIn(1000) }
function s_natal() { $('#inc_natal').fadeIn(1000) }

// carrega cycle
$(document).ready(function() {
	$('#slideshow').cycle({
	    fx:     'fade',
	    timeout: 7000,
	    speed:   1000
	});
});


// atendimento online
var WinObjRef = null;

function atendimentoOnline()
{
  if(WinObjRef == null || WinObjRef.closed)
  {
    WinObjRef = window.open("http://www.plusinfo.com.br/atendimento_online/livehelp.php?department=2",
   "AtendimentoOnline", "width=740,height=550,resizable=no,scrollbars=yes,status=yes");
  }
  else
  {
    WinObjRef.focus();
  };
}