// Hover effect for Buy the Book options

function showMe() {
	$("#buy-options").animate({opacity: "show", top: "-25"}, "slow");
}
			
function hideMe() {
	$("#buy-options").animate({opacity: "hide", top: "-50"}, "fast");
}
