$(document).ready(function() {

	iniciar_slideshow_opacidade("slider_grupo","120","-999999","-999999","20","14");
	
	$(".link_topo").not(".link_selecionado").hover(
	
		function () {
			
			$(".link_selecionado").stop(true,false).animate(
			
				{backgroundPosition:"(right 0px)",color:"#444444"}, 
				370
			
			);
			$(this).stop(true,false).animate(
			
				{backgroundPosition:"(right -115px)",color:"#444444"}, 
				370
			
			);

		},
		function () {
			
			$(".link_selecionado").stop(true,false).animate(
			
				{backgroundPosition:"(right -115px)",color:"#444444"}, 
				370
			
			);
			$(this).animate(
			
				{backgroundPosition:"(right 0px)",color:"#444444"}, 
				450
			
			);	
			
		}	
	
	);

	$(".frases").hover(
	
		function () {
			
			$(this).stop(true,false).animate(
			
				{backgroundPosition:"(0px 0px)",color:"#333",marginLeft:"20px"}, 
				300
			
			);

			
		},
		function () {
			
			$(this).animate(
			
				{backgroundPosition:"(-540px 0px)",color:"#fff",marginLeft:"0px"}, 
				500
			
			);		
			
		}	
	
	);
	
	$(".item").hover(
	
		function () {
		
			$(this).stop(true,false).animate(
			
				{backgroundPosition:"(0px 0px)", color: "#fff", paddingLeft: "50px"},
				300
			
			);	
			
		},
		function () {
			
			$(this).animate(
			
				{backgroundPosition:"(-330px 0px)", color: "#838383", paddingLeft: "30px"},
				500
			
			);
			
		}

	);
	
	$('#mensagem_caixa').dialog({

		show: "drop",
		
		hide: "drop",

		autoOpen: false,

		width: 400,

		modal: true,

		resizable: false,

		buttons: {

			"Fechar": function() { 

				$(this).dialog("close"); 

			} 

		}

	});				
	
	$('.contato').click(function(){

		$('#entrar_contato_caixa').dialog('open');

		return false;

	});
	
	$('#entrar_contato_caixa').dialog({
		
		show: "drop",
		
		hide: "drop",

		autoOpen: false,

		width: 500,

		modal: true,

		resizable: true,

		buttons: {

			"Enviar": function() { 

				$("#formulario_entrar_contato").submit(); 

			}, 

			"Cancelar": function() { 

				$(this).dialog("close"); 

			} 

		}

	});	
	
	$(".expandir_imagem").fancybox({
			
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	true
		
	});
	
	if ($('#thumbs').length!=0) {

		// Initialize Advanced Galleriffic Gallery
		var gallery = $('#thumbs').galleriffic({
			delay:                     2500,
			numThumbs:                 7,
			preloadAhead:              10,
			enableTopPager:            false,
			enableBottomPager:         true,
			maxPagesToShow:            11,
			imageContainerSel:         '#slideshow',
			controlsContainerSel:      '#controls',
			renderSSControls:          true,
			renderNavControls:         true,
			playLinkText:              'Play Slideshow',
			pauseLinkText:             'Pause Slideshow',
			prevLinkText:              '&lsaquo; Previous Photo',
			nextLinkText:              'Next Photo &rsaquo;',
			nextPageLinkText:          'Próxima &rsaquo;',
			prevPageLinkText:          '&lsaquo; Anterior',
			enableHistory:             false,
			autoStart:                 false,
			syncTransitions:           true,
			defaultTransitionDuration: 900,
			onSlideChange:             function(prevIndex, nextIndex) {
				
			},
			onPageTransitionOut:       function(callback) {
				this.fadeTo('fast', 0.0, callback);
			},
			onPageTransitionIn:        function() {
				this.fadeTo('fast', 1.0);
			}
		});	
	
	}

});

