$(document).ready(function() {
    // get quidlabs tweets
    getTwitters('stream', {
        id: 'quidlabs', 
        clearContents: false, // leave the original message in place
        enableLinks: true,
        count: 20, 
        withFriends: true,
        ignoreReplies: false,
        newwindow: true,
        template: '<div><img height="25" width="25" src="%custom_profile_image_url%"><p> %text% <a href="http://twitter.com/%user_screen_name%/statuses/%id_str%/" class="timestamp" target="_blank">%time%</a></p><br style="clear:both;"/></div>',
        callback: onTweetsReceived
    });
    
    function onTweetsReceived() {
        $('#stream').append('<br style="clear:both;" />');
        
        // prettify twitter stream scroll
        $('#stream').jScrollPane( { showArrows: true } );
        
        $('#stream ul').simpleSpy(10, 12000, updateTwitterScrollBars);
    }
    
    function updateTwitterScrollBars() {
        $('#stream').jScrollPane( { showArrows: true } );
    }
    
    // activate colorboxes
    $(".popup-video").colorbox({iframe:true, innerWidth:560, innerHeight:349, opacity: 0.5});

});
