/**
 * @author Sam Cartwright
 */

$(document).ready(function()	{	
	$("a.tab").click(function(event) {
		event.preventDefault();
		$(".active").removeClass("active");
		$(this).addClass("active");
		$(".banner").hide();
		var content_show = $(this).attr("title");
		$("#"+content_show).fadeIn("fast");
	});
});

