=========
Box-slide is a free support for tablet style pane navigation. It enables you to create smooth transitions between panes with CSS transitions and minimalistic approach.
The component works like a simple extension on a DOM object with couple of properties.
$('#box').box({ boxes: ['box_1', 'box_2', 'box_3', 'box_4'], swipe: false });
You can tie the navigation like this (using 'left' or 'right' to control the direction):
$('#prev').click(function(){ $('#box').moveBox('left'); });
jQuery - is required swipe.js - optional, only when using the feature.