/**
 * @author mbraun
 */
$(document).ready(function(){
	// When a link is clicked
	$(".tabbed_section .hdr_tab a").click(function () {
		// switch all tabs off
		$(".tabbed_section .hdr_tab a.active").removeClass("active");
		// switch this tab on
		$(this).addClass("active");
		// slide all content up
		$(".tabbed_section_content .content_container").hide();
		// slide this content down
		var content_show = $(this).attr("href");
		$(content_show).show();
    return false;
	});
});
