DD_roundies.addRule('.pager .button', '3px', true);
DD_roundies.addRule('#content', '10px', true);
DD_roundies.addRule('#rhs div.box', '10px', true);

$(document).ready(function () {
    $("a.lightbox[rel^='prettyPhoto']").prettyPhoto({
        theme: 'light_rounded'
    });

    $(".inner input, textarea").example(function () {
        return $(this).attr('title');
    });

    var idx = $.cookie('scrollable');
    if (idx == null)
        idx = 1;
    var api = $("div.scrollable").scrollable({
        onSeek: function() {
            $.cookie('scrollable', this.getIndex()+1);
        },
        onReload: function() {
            this.seekTo(idx-1, 0);
            $.cookie('scrollable', this.getIndex()+1);
        },
        clickable: false,
        size: 3
    });
});

