// JavaScript Document
var pdfProps = 'location=yes,menubar=yes,scrollbars=yes,resizable=yes,width=600,height=600';
function hideAns() {
  $('.answer').hide();
  $('#maincontent1 p').toggle(
	function() {
	  $(this).next('.answer').fadeIn();
	  $(this).addClass('close');
	},//End addClass function
	function() {
	  $(this).next('.answer').fadeOut();
	  $(this).removeClass('close');
	}//end removeClass fucntion
  );//end toggle
};//end function hideAns

//This section begins the greybox code

function grBox() {
	var gbOptions = {
	  gbWidth: 600,
	  gbHeight: 500,
	  captionHeight: 22,
	  ffMacFlash: true
	};
	$('.pageWindow').greybox(gbOptions);
};
