function getYearString(){
    var date = new Date();
    return date.getFullYear();
}
            
$(document).ready(function(){
    $('.logos').jCarouselLite({
        auto: 700,
        speed: 2500,
        vertical: true
    });
    
    //$('.logos').height(500);
    
    $('.technology-logos li img').each(function(){
        var height = $(this).height();
        $(this).parent().height(height);
    });
});
