// requires jQuery
$(document).ready(function () {
	$(".tabContainer .tabs .tab").each(function(i){
		$(this).click(function() {
			// de-select all tabs
			$(".tabContainer .tabs .tab").removeClass("selected");
			// hide all content
			$(".tabContainer .tabMainBody").hide();
			// select current tab
			$(this).addClass("selected");
			// show current content
			$("#"+$(this).attr("id")+"Body").show();
		});
	});
	
	$(".tabContainer").each(function(i){
		$(this).find(".tabs .tab:first").click();	
	});
});
