
$(document).ready(function() { 


/*******************************************************************************************************
	PÁGINA INÍCIO
********************************************************************************************************/
if ($("#general.inicio").length > 0) {

	/*Logo CFP branco */		
	var newlogocfp = $("#logoCFPfooter").attr("src").replace("../img/logo-cfp-small.png", "../img/logo-cfp-small-white.png");
	$("#logoCFPfooter").attr("src", newlogocfp)

	/*backgorund image-home*/
    $('img.bgmaximage').maxImage({
        isBackground: true
    });

	/*backgorund image-home*/
	$("#destInicio").scrollable({ circular: true, mousewheel: true }).navigator().autoscroll({
		interval: 3000
	});
	
	$("#barNews").scrollable({ next: '.barNewsMext', prev: '.barNewsPrev', vertical: true, circular: true }).navigator().autoscroll({
		interval: 3000
	});
	
}


$('#lnkNewsletter').live('click', function() {
	$('#box-newsletter').show();
	$('##box-newsletter input[type=text]').focus();
});


/*btn*/
$( ".btn-glob" ).button();

/*Search Global*/
$('#search-global').live('click', function() {
	$(this).addClass('sel');
	$('#search-global input[type=text]').focus();
});

/*Click Mark Sel*/
$('#lstResultPlf li a').click(function(){
	$('#lstResultPlf li a').removeClass('sel');
	$(this).addClass('sel');
});

/*Menu*/
$('#menu>li>a').click(function(){
	$('#menu>li').removeClass('sel');
	//$('#menu ul').slideDown("slow");
	$(this).parent().addClass('sel');
});

$('#menu li ul li a').click(function(){
	$('#menu li ul li').removeClass('sub-sel');
	$(this).parent().addClass('sub-sel');
});

$('#sec-nav .sec-menu li a').click(function(){
	$('#sec-nav .sec-menu li').removeClass('sel');
	$(this).parent().addClass('sel');
});

/*Seta Height*/
var maxHeight = 0;
function setHeight(column) {
    //Get all the element with class = col
    column = $(column);
    //Loop all the column
    column.each(function() {       
        //Store the highest value
        if($(this).height() > maxHeight) {
            maxHeight = $(this).height();;
        }
    });
    //Set the height
    column.height(maxHeight);
}

setHeight('.colHeight');

/*******************************************************************************************************
	PÁGINA DÚVIDAS MAIS FREQUENTES
********************************************************************************************************/

if ($("#general.pg-duvidas-freq").length > 0) { 

		$('#lst-quest li a').live('click', function(){
			$(this).removeClass('sel');
			var cont = $(this).next('.cont'), display = cont.css('display');
			if(display == 'block' || display == '') {
				cont.hide();
			} else {
				cont.show();
				$(this).addClass('sel');
			}
		}); 
	}

/*******************************************************************************************************
	PÁGINA BUSCAR PLANEJADOR CFP
********************************************************************************************************/

if ($("#general.pg-buscar-plf").length > 0) { 

		$('#lstResultPlf li a').click(function(){
			$('#lstResultPlf li a').removeClass('sel');
			$(this).addClass('sel');
		}); 
	}









});
