	  $(document).ready(function(){

		// When a link is clicked
		$(".tabs li a").click(function ()
		{
			// switch all tabs off
			$(".tabActive").removeClass("tabActive");

			// switch this tab on
			$(this).parent().addClass("tabActive");

			// slide all elements with the class 'content' up
			$(".tab-content").hide();

			// Now figure out what the 'title' attribute value is and find the element with that id.  Then slide that down.
			var content_show = $(this).parent().attr("id");
			$("#"+ content_show +'_content').show();
			
			return false;
		});

	  });
	  

