	jQuery(document).ready(function() {		
	
		// Insight Button
		$(".insight-button").click(function () {
			// Initiates Toggle Effect
			$(".insight-content").slideToggle("slow");

			// Closes Open Tabs
			$(".success-content").slideUp("slow");

			// Changes Hover State
			$(".insight-button").addClass("what-selected");
			$(".success-button").addClass("what-greyed");
			$(".insight-button").removeClass("what-greyed");

			// Changes Big Text Colour
			$("p.fade-text-bottom").addClass("grey-fade");
			$("p.fade-text-top").removeClass("grey-fade");

		});

		// Success Button
		$(".success-button").click(function () {
			// Initiates Toggle Effect
			$(".success-content").slideToggle("slow");

			// Closes Open Tabs
			$(".insight-content").slideUp("slow");

			// Changes Hover State
			$(".success-button").addClass("what-selected");
			$(".insight-button").addClass("what-greyed");
			$(".success-button").removeClass("what-greyed");

			// Changes Big Text Colour
			$("p.fade-text-top").addClass("grey-fade");
			$("p.fade-text-bottom").removeClass("grey-fade");

		});
	
	});