$(document).ready(function($) {

	// Accordion para o conteúdo de páginas
	$('.accordion .entry').hide();
	$('.accordion .entry:first').show();
	$('.accordion h3:first').addClass('open');
	$('.accordion h3').click(function(){
		if(!$(this).next('.entry').is(':visible')) {
			$('.accordion .entry').slideUp();
			$('.accordion h3').removeClass('open');
			$(this).next('.entry').slideDown();
			$(this).addClass('open');
			return false;
		} else {
			return false;
		}
	});


	// Accordion para menu das lojas
	$('ul.lojas .children').hide();
	$('ul.lojas h3').addClass('closed');
	$('ul.lojas h3').click(function(){
		if(!$(this).next('.children').is(':visible')) {
			$('ul.lojas .children').slideUp();
			$(this).next('.children').slideToggle();
			$(this).removeClass('closed').addClass('open');
			return false;
		} else {
			return false;
		}
	});


	$("a[rel='mouzinho']").colorbox({maxWidth:'95%',maxHeight:'95%',current:"{current}/{total}",previous: "«",next: "»", close: "x", opacity:'0.8'});
	$("a[rel='video700']").colorbox({innerWidth:'700',innerHeight:'390',iframe:true,current:"{current}/{total}",previous: "«",next: "»", close: "x", opacity:'0.8'});
	$("a[rel='videopopup']").colorbox({innerWidth:'700',innerHeight:'390',iframe:true,current:"{current}/{total}",previous: "«",next: "»", close: "x", opacity:'0.8', open:true});


/*	// DESTAQUES
	$(".conteudo-destaque, a.show-less").hide(); //Hide all content
	$("a.show-more").click(function() {
		$(this).parent().parent().children('.conteudo-destaque').slideDown('fast');
		$(this).parent().children('.show-less').show();
		$(this).hide();
		return false;
	});

	$("a.show-less").click(function() {
		$(this).parent().parent().children('.conteudo-destaque').slideUp('fast');
		$(this).parent().children('.show-more').show();
		$(this).hide();
		return false;
	});
	
*/	

	// DESTAQUES
	$(".conteudo-destaque").hide(); //Hide all content
	$(".boxdestaque h1").click(function() {
		//$(this).children('span').slideDown('fast');
		$(this).next('.conteudo-destaque').slideToggle('fast');
		if($(this).children('span').hasClass('show-more')) {
			$(this).children('span').removeClass('show-more').addClass('show-less');
		} else {
			$(this).children('span').removeClass('show-less').addClass('show-more');
		}
		return false;
	});
	



	// SCROLL TITULOS AUDIOS
	var $audioScroll = $('ul.audios-348');
	$('li', $audioScroll).mouseover(function() {
		var boxWidth = $(this).width();
		var textWidth = $('.title', $(this)).width()+8;

		if (textWidth > boxWidth) {
			var animSpeed = textWidth - boxWidth; // 50 pix per sec
			$('.title', $(this)).animate({textIndent: -animSpeed}, 800);
		}

	}).mouseout(function() {
		$('.title', $(this)).stop().animate({textIndent: 0}, 800);
	})


	// SCROLL TITULOS VIDEOS
	var $videoScroll = $('ul.videos-348');
	$('li a', $videoScroll).mouseover(function() {
		var boxWidth = $(this).width();
		var textWidth = $('.title', $(this)).width()+8;

		if (textWidth > boxWidth) {
			var animSpeed = textWidth - boxWidth; // 50 pix per sec
			$('.title', $(this)).animate({textIndent: -animSpeed}, 800);
		}

	}).mouseout(function() {
		$('.title', $(this)).stop().animate({textIndent: 0}, 800);
	})





    // Tabs para actividades
    $(".tab-actividade").hide(); //Hide all content
    $("#lista-actividades li:first").addClass("active"); //Activate first tab
    $(".tab-actividade:first").show(); //Show first tab content

    $("#lista-actividades li").click(function() {

        $("#lista-actividades li").removeClass("active"); //Remove any "active" class
        $(this).addClass("active"); //Add "active" class to selected tab
        $(".tab-actividade").slideUp(); //Hide all tab content

        var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
        $(activeTab).slideDown(); //Fade in the active ID content
        return false;
    });


});

