$(document).ready(function(){
	
	//PRETTY-PHOTO
	$("a[rel^='prettyPhoto']").prettyPhoto({
		callback: function () {
			var position = window.pageYOffset;
			document.location.hash = "";
			window.scrollTo(0, position);
		}
	});

	//TTLS
	$('h2.helv_cond').prepend("<span class=\"ttl_bar\">//</span>");
	$('h3.helv_cond').prepend("<span class=\"ttl_bar\">//</span>");
	
	//DESTAQUE-HOME
	$('#dests_home div:nth-child(3)').css('margin','0');
	
	//CYCLE-PARCEIROS
	$('#cycle_parceiros').cycle({ 
		fx:     'fade', 
		pause: 1,
		speed:  700,  
		timeout: 5000 
	});
	
	//GALERIA-HOME
	$('#dest_02 ul li:nth-child(3)').css('margin',0);
	$('#dest_02 ul li:nth-child(2)').animate({width:80}, 100);
	$('#dest_02 ul li:nth-child(2)').find('a').animate({top:0, width:80, height:60}, 100);
	$('#dest_02 ul li:nth-child(2)').find('a').find('img').animate({width:80, height:60}, 100);
	
	$('#dest_02 ul li').hover(function(){	
		$('#dest_02 ul li').stop().animate({width:60}, 100);
		$('#dest_02 ul li a').stop().animate({top:10, width:60, height:40}, 100);
		$('#dest_02 ul li a img').animate({width:60, height:40}, 100);
				
		$(this).stop().animate({width:80}, 100);
		$(this).find('a').stop().animate({top:0, width:80, height:60}, 100);
		$(this).find('a').find('img').stop().animate({width:80, height:60}, 100);
	}, function(){
		$(this).stop().animate({width:60}, 100);
		$(this).find('a').stop().animate({top:10, width:60, height:40}, 100);
		$(this).find('a').find('img').stop().animate({width:60, height:40}, 100);
	});
	
	$('#dest_02 ul').mouseleave(function(){
		$('#dest_02 ul li:nth-child(2)').animate({width:80}, 100);
		$('#dest_02 ul li:nth-child(2)').find('a').animate({top:0, width:80, height:60}, 100);
		$('#dest_02 ul li:nth-child(2)').find('a').find('img').animate({width:80, height:60}, 100);
	});
	
	//CYCLE-NOVIDADES
	$('#cycle_novidades').cycle({
		activePagerClass: 'active',
		pager: '#pager_cycle_home',
		fx:     'scrollVert', 
		pause: 1,
		speed:  700,  
		timeout: 5000
	});
	$('#home_novidades').hover(function(){
		$(this).find('div#pager_cycle_home').stop(false,true).fadeIn();
	}, function(){
		$(this).find('div#pager_cycle_home').stop(false,true).fadeOut();
	});

	//CONTEUDO-2COL
	$('#wrap_full').find('div.cont_2_col').last().css('margin',0);
	
	//CONTEUDO-3COL
	$('#wrap_full').find('div.cont_3_col').last().css('margin',0);

	//NOSSA-EQUIPE
	$('#full_equipe dl:nth-child(4n)').css('margin','0 0 20px 0');
	$('#full_equipe dl:last-child').after("<div class=\"clear\"></div>");
	$('#full_equipe dl dt a.bt_info').click(function(){
		var dsc = $(this).parent().parent().find('dd.desc_equipe');

		if(dsc.is(":visible")){
			dsc.fadeOut();	
			$(this).text("Mais informações +");
		} else {
			dsc.fadeIn();
			$(this).text("Menos informações -");
		}
	});
	
	//GALERIA-VIDEOS
	$('#thumbs').jCarouselLite({
		btnPrev: '#video_left',
		btnNext: '#video_right',
		speed: 300,
		visible: 5,
		circular: true
	})

	$('.cont_video').hide();
	$('#play_video_01').show();	
	$('#thumbs ul li dl dd.lnk_video a').click(function(){
		var el = $(this).parent().attr('id');
		var _el = "#play_" + el;
		
		$('.cont_video').fadeOut('fast');
		$(_el).fadeIn('slow');
				

	});
	
	//GALERIA-FOTOS
	$('#galeria_fotos dl:nth-child(3n)').after("<div class=\"clear\"></div>");
	$('#galeria_fotos dl:last-child').after("<div class=\"clear\"></div>");
	
	
	
	
	//PARAQUEDISTA-HOME
	var al = $(window).width();
	var _al = al - $('#dest_paraquedista').width();
	var el = $(window).height();
	var _el = el - $('#dest_paraquedista').height();
	
	$('#dest_paraquedista').fadeIn();
	$('#dest_paraquedista').animate({left:_al , top:_el}, 5000);
	$('#dest_paraquedista').fadeOut();
	

});
