function openPeel() {
   $('#pageflip').animate({
		width: '700',
		height: '700'
	}, 100, function() {
		// Animation complete.
	});
};
function closePeel() {
   $('#pageflip').animate({
		width: '85',
		height: '85'
	}, 600, function() {
		// Animation complete.
	});
};
function openSubPeel() {
	$('#sub-pageflip').animate({
		width: '300',
		height: '300'
	}, 100, function() {
		// Animation complete.
	});
};
function closeSubPeel() {
	$('#sub-pageflip').animate({
		width: '75',
		height: '75'
	}, 600, function() {
		// Animation complete.
	});
};
