$(document).ready(function () {
	// Set up local scroll
	$.localScroll.defaults.axis = 'y';
	$.localScroll();
	
	$('#bioHide').hide();
	// Toggle the bio
	$('#bioToggle').click(function(){
		$('#bioHide').slideToggle('slow');
		$(this).text($(this).text() == 'Read more' ? 'Read less' : 'Read more');
	});
	
	$('#orderHide').hide();
	// Toggle the bio
	$('#orderToggle').click(function(){
		$('#orderHide').slideToggle('slow');
		$(this).text($(this).text() == 'Show order form' ? 'Hide order form' : 'Show order form');
	});
});
