$(document).ready(function() {
    $('#bannerContent .nivoSlider').nivoSlider({
        effect:"fade",
        captionOpacity: 1,
        boxCols:8,
        prevText: 'Próximo', // Prev directionNav text
        nextText: 'Anterior', // Next directionNav text
        boxRows:4,
        animSpeed:500,
        pauseTime:5000,
        startSlide:0,
        directionNav:true,
        directionNavHide:true,
        controlNav:true,
        controlNavThumbs:false,
        controlNavThumbsFromRel:true,
        keyboardNav:true,
        pauseOnHover:true,
        manualAdvance:false
    });
	
    $('#bannerSecondary li').each(function () {
        $(this).find('img').load(function () {
            $(this).parents('li').css({
                width: $(this).width() + 'px',
                height: $(this).height() + 'px'
            });
            $(this).siblings('a').css({
                width: $(this).width() + 'px',
                height: $(this).height() + 'px'
            })
        })
    });
    $('#bannerSecondary li').hover(function () {
        $(this).find('.overlay, div').css({
            opacity: 0.8,
            display: 'block'
        });
    }, function () {
        $(this).find('.overlay, div').css({
            display: 'none',
            opacity: 0
        });
    });
});
