$(function() {
    //Homepage Slideshow
    $('a.slide').lightBox({fixedNavigation: true});
    
    $('a#learn-more').click(function(){
        if($(this).is('.active')){
            $('.box').slideUp();
            $(this).removeClass('active');
            $(this).text('Learn More');
        } else {
            $('.box').slideDown();
            $(this).addClass('active');
            $(this).text('Less Text');
        }
    });
    
    $(".tooltips li span").bt({
        spikeGirth: 25,
        spikeLength: 17,
        positions: 'left',
        padding: 15,
        width: 290,
        cornerRadius: 10,
        fill: '#b3e2fd',
        strokeWidth: 2,
        strokeStyle: '#767676',
        cssStyles: {color: '#4e4e4e'}
    });
});
