function ready() {
    
    
    testimonials.init();
}



var testimonials = {
    
    init: function() {
        
        $('.sidebar ul li').click(function() {
           
       
           
           var quote = $(this).find('blockquote').html();
           
              
           $(this).parent('ul').find('.active').removeClass('active');
           
           $(this).addClass('active');
           
           $('#testimonial-viewer').slideUp(500, function() {
               
               $(this).slideDown(500).find('.text').html(quote);
               
               var height = $(this).find('.text').height();
                
               $(this).find('.container').css( { marginTop: ((height / 2) * -1) } )
               
            
           });
           
           
            
        });
        
        
        $('.sidebar ul li:first').click();
        
        
        
    }
    
    
}
