$(document).ready(function() {
			
	$("#linkCadastro").fancybox({
		'width' : 750,
		'height' : 300,
		'scrolling' : 'no',
		'autoScale' : false,
		'transitionIn' : 'elastic',
		'transitionOut' : 'elastic',
		'type' : 'iframe'
	});
	$("#linkEsqueciSenha").fancybox({
		'width' : 750,
		'height' : 300,
		'scrolling' : 'no',
		'autoScale' : false,
		'transitionIn' : 'elastic',
		'transitionOut' : 'elastic',
		'type' : 'iframe'
	});
	$("#linkAventura").fancybox({
		'width' : 960,
		'height' : 500,
		'scrolling' : 'no',
		'autoScale' : false,
		'transitionIn' : 'elastic',
		'transitionOut' : 'elastic',
		'type' : 'iframe'
	});
	$("#linkExcursoes").fancybox({
		'width' : 960,
		'height' : 500,
		'scrolling' : 'no',
		'autoScale' : false,
		'transitionIn' : 'elastic',
		'transitionOut' : 'elastic',
		'type' : 'iframe'
	});
	$("#linkPacotes").fancybox({
		'width' : 960,
		'height' : 500,
		'scrolling' : 'no',
		'autoScale' : false,
		'transitionIn' : 'elastic',
		'transitionOut' : 'elastic',
		'type' : 'iframe'
	});
	$("#galeriaFotos").fancybox({
		'width' : 960,
		'height' : 500,
		'scrolling' : 'no',
		'autoScale' : false,
		'transitionIn' : 'elastic',
		'transitionOut' : 'elastic',
		'type' : 'iframe'
	});
	$('.contatoScroll').click(function() {
		var elementClicked = $(this).attr("href");
		var destination = $(elementClicked).offset().top;
		$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 500 );
		return false;
	});
});

function GaleryPrev() {
	var id = $("#galeryId").val();
	id --;

	if (id < 1)
		SetGalery(1);
	else
		SetGalery(id);
}
function GaleryNext() {
	var nGaleries = 4;
	var id = $("#galeryId").val();
	id ++;

	if (id > nGaleries)
		SetGalery(1);
	else
		SetGalery(id);
}
function SetGalery(id) {
	$("#galeryId").val(id);

	var gallery=$("#imgMainBG").get(0);
	var array;
	var titulo;
	var desc;

	switch(id)
	{
	case 2:
	  array=[
			"/images/roteiros/11_1.jpg"
			]
			titulo = "Petar | 04-05/02";
			desc = "<a href='Roteiro/11/29'>Pacote completo 299,00</a>";
			$("#roteiroId").val(11);
	  break;
	case 1:
	  array=[
			"/images/roteiros/12_1.jpg"
			]
			titulo = "São Thomé das Letras | 17-18/03";
			desc = "<a href='Roteiro/12/23'>Conheça os mistérios dessa cidade</a>";
			$("#roteiroId").val(12);
	  break;
	default:
	  array=[
			"/images/roteiros/12_1.jpg"
			]
			titulo = "São Thomé das Letras | 17-18/03";
			desc = "<a href='Roteiro/12/23'>Conheça os mistérios dessa cidade</a>";
			$("#roteiroId").val(12);
	  break;
	}
	$.mbBgndGallery.changeGallery(gallery,array);

	$("#titDestino").html(titulo);
	$("#descDestino").html(desc);
}
function Register() {	
	$("#conteudoFrame").attr("src","/Register");
	$("#conteudo").show();
}

