$(document).ready( function() {
	$(".tabcontrol a").click( function() {
		$(".tabcontrol h2, .tabcontent").removeClass("active");
		$(this).parent("h2").addClass("active");
		var activetab = $(this).attr("href");
		$(activetab).addClass("active");
		return false;
	});
});

