$(document).ready(function(){
    // draw the fancy curly quotes around quotes so the biz peeps don't have to do it manually
    $("#scroller_sections blockquote").prepend('<span class="bqstart">&#8220;</span>').append('<span class="bqend">&#8221;</span>');

    // carouselize the media logos
    var $carousel = $("#scroller_sections .sub_carousel_bar .carousel");
    // randomize: $carousel.shuffle();
    $carousel.carousel({
        prevControl: "#scroller_sections .sub_carousel_bar .slide.prev",
        nextControl: "#scroller_sections .sub_carousel_bar .slide.next",
        multipleVisibleFrames: true
    });

    // carouselize the top overview area
    $("#scroller_sections .main_carousel").carousel({
        populateDotNav: "#scroller_sections .main_carousel_nav",
        dotFactory: function(){
            return '<span class="dot"></span>';
        }
    });

    $("#left_menu a").scrollTo();
});

