/* CSS Document */
$(function(){
	$('div[data-role="page"]').live("swipeleft", function(){
	var nextpage = $(this).next('div[data-role="page"]');
	// swipe using id of next page if exists
	if (nextpage.length > 0) {
	$.mobile.changePage(nextpage, 'slide');
	}
	});
	
	$('div[data-role="page"]').live("swiperight", function(){
	var prevpage = $(this).prev('div[data-role="page"]');
	// swipe using id of next page if exists
	if (prevpage.length > 0) {
	$.mobile.changePage(prevpage, 'slide', true);
	}
	});
});
