;(function($) {
$(document).ready(function() {

	//Make Answers expand/collapse when question is clicked
	$('.answer').hide().prev('.question').addClass('clickable')
	.click(function(){
		$(this)
		.toggleClass('show')
		.next('.answer')
		.toggle('fast');
		return false;
	})

	//Make appropriate answer expand if anchor passed in URL
	var myFile = document.location.toString();
	if (myFile.match('#')) { // the URL contains an anchor
	  // click the navigation item corresponding to the anchor
	  var myAnchor = '#' + myFile.split('#')[1];
	  $(myAnchor).click();
	}


})
})(jQuery);