// JavaScript Document

$(document).ready(function(){

  // When a link is clicked
  $("a.tab").click(function () {
  
	// switch all tabs off
	$(".active").removeClass("active");
	
	// switch this tab on
	$(this).addClass("active");
	
	// slide all content up
	$(".content").slideUp();
	
	// slide this content up
	var content_show = $(this).attr("name");
	$("#"+content_show).slideDown();
  
  });

});
