		// CONTENT SWAP

	  $(document).ready(function(){
			$(".small-content h3").click(function () {
				if ( $(".small-content h3").parent().parent().hasClass("selected-school-type")) {
					$(".small-content h3").parent().parent().width(316).height(194).removeClass("selected-school-type").children(".small-content").show();
					$(".small-content h3").parent().parent().children(".big-content").addClass("hidden");
					$(this).parent().parent().width(636).height(398).addClass("selected-school-type").children(".small-content").hide();
				} else $(this).parent().parent().width(636).height(398).addClass("selected-school-type").children(".small-content").hide();
				$(this).parent().parent().children(".big-content").removeClass("hidden");
			});
			$(".small-content img").parent().click(function () {
				if ( $(".small-content h3").parent().parent().hasClass("selected-school-type")) {
					$(".small-content h3").parent().parent().width(316).height(194).removeClass("selected-school-type").children(".small-content").show();
					$(".small-content h3").parent().parent().children(".big-content").addClass("hidden");	
					$(this).parent().parent().width(636).height(398).addClass("selected-school-type").children(".small-content").hide();
				} else $(this).parent().parent().width(636).height(398).addClass("selected-school-type").children(".small-content").hide();
				$(this).parent().parent().children(".big-content").removeClass("hidden");
			});
			$(".big-content h4").click(function() {
				if ( $(this).parent().parent().hasClass("selected-school-type")) {
					$(".big-content h4").parent().parent().width(316).height(194).removeClass("selected-school-type").children(".small-content").show().parent().children(".big-content").hide();
				}
			});
			$(".show-quick-links").click(function() {
				if ( $(".quick-links").hasClass("hidden")) {
					$(".quick-links").removeClass("hidden");
				} else $(".quick-links").animate({ height: "216px"}, 200).delay(200).addClass("hidden");
			});
  		$(".small-content h3").click(function () {
				$(".home").prepend($(".selected-school-type"));
			});
  		$(".small-content img").parent().click(function () {
				$(".home").prepend($(".selected-school-type"));
			});
  	});
  	
  	
  	// SLIDESHOW JS
  	
  	
  	$(document).ready(function() {
   	 $('.slideshow').cycle({
				fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			});
		});
