

function init_nav_buttons() {
    $('.image_holder').each(function(i) {
        var me = this;
        var w = $(me).width();
        $(me).width(w - 24);
    });
    $('.image_mover').filter('#move_right').each(function(i) {
        var me = this;
        var x = $(me).siblings('.image_holder').width() + 2;
        if (document.all)
            var pos = $(me).siblings('.image_holder').position();
        else
            var pos = $(me).siblings('.image_holder').offset();
        $(me).css({ top: (pos.top) + 'px', left: (pos.left + x) + 'px' });
    })
}

function image_slider(holder) {
    this.move = function(skip) {
            
    }
 }
