$('document').ready(function () {
    $('#brandbox').cycle({
        'fx':       'fade',
        'timeout':  5000,
        'next':     '#navigation .right',
        'prev':     '#navigation .left',
        'pause':    1
    });

    $("#tweetcontainer").html('');
    $('#tweetcontainer').twitter({
        account: 'weideic',
        show: 5,
        beforeShow: function(e, t) {
            $('#tweetcontainer').html('');
        },
        'target': '_blank'
    });
});


