$(document).ready(
	function() {

		//
		// BEGIN displaying questions upon mouseover for "Is This You?" page

			$("table.is_this_you a").mouseover(
				function() {
					var title_txt = this.title;
					$("table.is_this_you td.question p").text(title_txt);
				}
			);
			$("table.is_this_you a").mouseout(
				function() {
					var title_txt = this.title;
					$("table.is_this_you td.question p").text("Do any of these common, dominant patterns of the human body resemble you?");
				}
			);

		// END displaying questions upon mouseover for "Is This You?" page
		//
		
		$("ul.sf-menu").superfish();

	}
);