jQuery(document).ready(function () {
    jQuery('.tabs').hover(function () {
        jQuery(this).stop().animate({
            right: '0px'
        }, {
            queue: false,
            duration: 300
        });
    }, function () {
        jQuery(this).stop().animate({
            right: '-95'
        }, {
            queue: false,
            duration: 300
        });
    });
});
