$(document).ready(function(){

	$('.bookmark_link').click(function () {
		$('.bookmark_box').toggle('fast');
		return false;
		});

	$('.email_link').click(function () {
		$('.email_box').toggle('fast');
		return false;
		});

	$('.toggle-answer').click(function () {
		$('.answer').toggle('slow');
		return false;
		});

	var url = document.location.toString();
	// this allows you to add #answer to the URL to start with the answer revealed 
	// http://www.patspapers.com/index_ee.php/trivia/item/monday_trivia/#answer
	if ( url.match('#answer') ) {$('.answer').show('slow');}
 
});