    
    
    jQuery(document).ready(function() {
        
        /* = Banner Slides ==== */
        $('#banner-slides').cycle({
            timeout: 6000,
            activePagerClass: 'active',
            pager: '#banner-pager nav',
            pagerAnchorBuilder: function() {
                return '<a href="#"></a>';
            },
            after: function(curr, next, opts) {
                $('#banner-pager h3').hide();
                $('#banner-pager h3:eq('+ opts.currSlide +')').show();
            }
        });
        
        
        /* = Format blockquotes ==== */
        $('blockquote p').prepend('&#8220;');
        $('blockquote cite').before('&#8221;');
        
        
        /* = Shade table rows ==== */
        $('table tr:even:not(.header-row)').addClass('row-even');
        
        
        /* = Read more functionality for staff bios ==== */
        $('.staff-bio-text').next('.read-more').click(function(){
            $(this).prev('.staff-bio-text').slideToggle('fast');
            
            if( $(this).html() == 'Show Bio' ){
                $(this).html('Hide Bio');
            }else{
                $(this).html('Show Bio');
            }
            
            return false;
        });
        
        
        /* = Sidebar slideshow ==== */
        $('#side-slideshow').cycle({
            timeout: 6000,
            fx: 'fade'
        });
        
        $('a', $('#side-slideshow')).fancybox();
        $('.photos a', $('#main-content')).fancybox();
        
    });
