$().ready(function(){
    $('#sidebar .ctrl-paginator').colorPaginator({
        nextText: 'Next ►',
        prevText: '◄ Prev'
    });
    
    $('#content .rowB .ctrl-paginator').colorPaginator({
        nextText: 'Next ►',
        prevText: '◄ Prev'
    });
    
    var a = $('#sidebar .list.archives');
    a.height(a.find('.ctrl-paginator-viewport').height() + 64);
    
    $('a.flowplayer').flowplayer(Ctrl.Config.baseUrl + '/core/scripts/flowplayer/flowplayer-3.1.5.swf', { 
        clip: { autoPlay: false, autoBuffering: true },
        plugins: {
            controls: {                        
               progressColor: '#112233',
               buttonColor: '#5F747C',
               buttonOverColor: '#728B94',
               durationColor: '#9EB7B2',
               progressGradient: 'medium',
               
               bufferColor: '#445566',
               bufferGradient: 'none',
               volumeSliderColor: '#333333',
               
               borderRadius: '0px',
               timeColor: '#9EB7B2',
               timeBgColor: '#000000',
               sliderColor: '#000000',
               tooltipColor: '#5F747C',
               tooltipTextColor: '#ffffff',
               backgroundColor: '#000000',
               backgroundGradient: 'none',
               volumeSliderGradient: 'none',
               sliderGradient: 'none',
               height: 20,
               opacity: 1.0
            }
         }
    });
    
    $('#profile-trigger').click(function(){
        $('#profile').slideToggle();
        
        return false;
    });
});
