	jQuery(document).ready(function() {		

		// Dr. Sundeep Thinda*
		$(".who-title-1").click(function () {
			// Initiates Toggle Effect
			$(".open-1 .who-slider").slideToggle("slow");

			// Closes Open Tabs
			$(".open-2 .who-slider").slideUp("slow");
			$(".open-3 .who-slider").slideUp("slow");

			// Changes Hover State
			$(".who-title-1").addClass("selected");
			$(".who-title-2").addClass("greyed");
			$(".who-title-3").addClass("greyed");
			$(".who-title-1").removeClass("greyed");
		});

		// Dr. Graeme Saruk*
		$(".who-title-2").click(function () {
			// Initiates Toggle Effect
			$(".open-2 .who-slider").slideToggle("slow");

			// Closes Open Tabs
			$(".open-1 .who-slider").slideUp("slow");
			$(".open-3 .who-slider").slideUp("slow");

			// Changes Hover State
			$(".who-title-2").addClass("selected");
			$(".who-title-1").addClass("greyed");
			$(".who-title-3").addClass("greyed");
			$(".who-title-2").removeClass("greyed");
		});

		// Advisory Board*
		$(".who-title-3").click(function () {
			// Initiates Toggle Effect
			$(".open-3 .who-slider").slideToggle("slow");

			// Closes Open Tabs
			$(".open-2 .who-slider").slideUp("slow");
			$(".open-1 .who-slider").slideUp("slow");

			// Changes Hover State
			$(".who-title-3").addClass("selected");
			$(".who-title-2").addClass("greyed");
			$(".who-title-1").addClass("greyed");
			$(".who-title-3").removeClass("greyed");
		});

		$("a.advisory-title-1").mouseover(function () {
			// Initiates Fade Effect
			$(".advisory-content-1 p").fadeIn();
			$(".advisory-content-2 p").fadeOut("fast");
			$(".advisory-content-3 p").fadeOut("fast");
			$(".advisory-content-4 p").fadeOut("fast");
			$(".advisory-content-5 p").fadeOut("fast");
		});

		$("a.advisory-title-2").mouseover(function () {
			// Initiates Fade Effect
			$(".advisory-content-2 p").fadeIn();
			$(".advisory-content-1 p").fadeOut("fast");
			$(".advisory-content-3 p").fadeOut("fast");
			$(".advisory-content-4 p").fadeOut("fast");
			$(".advisory-content-5 p").fadeOut("fast");
		});

		$("a.advisory-title-3").mouseover(function () {
			// Initiates Fade Effect
			$(".advisory-content-3 p").fadeIn();
			$(".advisory-content-2 p").fadeOut("fast");
			$(".advisory-content-1 p").fadeOut("fast");
			$(".advisory-content-4 p").fadeOut("fast");
			$(".advisory-content-5 p").fadeOut("fast");
		});

		$("a.advisory-title-4").mouseover(function () {
			// Initiates Fade Effect
			$(".advisory-content-4 p").fadeIn();
			$(".advisory-content-2 p").fadeOut("fast");
			$(".advisory-content-3 p").fadeOut("fast");
			$(".advisory-content-1 p").fadeOut("fast");
			$(".advisory-content-5 p").fadeOut("fast");
		});

		$("a.advisory-title-5").mouseover(function () {
			// Initiates Fade Effect
			$(".advisory-content-5 p").fadeIn();
			$(".advisory-content-2 p").fadeOut("fast");
			$(".advisory-content-3 p").fadeOut("fast");
			$(".advisory-content-4 p").fadeOut("fast");
			$(".advisory-content-1 p").fadeOut("fast");
		});


	});
