// Initialize our image stacks. See: wm.imageStack.jquery.js
// We're treating the specialty list as an image stack, as well
$(document).ready(function() {
    
    var count = $('.photographer-list li').length;
    var rand = Math.floor((count)*Math.random()) + 1 ;


    $('.photographer-list .active').attr('class', '');
    $('.photographer-list li:nth-child(' + rand + ')').attr('class', 'active');


    $.fn.WMImageStack({
        lists:  [$('.photographer-list')], // make the list and array of link elements
        stacks: [$('#headshots')]
     });

     introAnimation();
});



function introAnimation() {



            $('#logo').fadeIn(800, function() {
            });




}