$(document).ready(function(){
	$('#navigation .prev').click(function(event){
		// Stuff to do when "Prev" is clicked.
		myDeck.prev();
	});
	$('#navigation .next').click(function(event){
		// Stuff to do when "Next" is clicked.
		myDeck.next();
	});
});
