jQuery(document).ready(function() {

    jQuery('#sidebar ul.links a.expandable').each(function(i) {
        var width = this.offsetWidth;
        var height = this.offsetHeight;
        var ul = jQuery(this).next('ul').css({
            'margin-left' : (width + 2) + 'px',
            'margin-top': '-' + height + 'px'
        });
    });

    jQuery('.banners').cycle({
        fx:     'fade',
        timeout: 7500,
        delay:  2000,
        next: '.banner-controls .left',
        prev: '.banner-controls .right'
    });
});
