// JavaScript Document
$(function(){$("li[id^=t]").click(function(){
	var tsid=$(this).attr("id")+"0";
	var tpid=$(this).attr("id").substr(0,$(this).attr("id").length-1);
	var cid=$(this).attr("id").replace("t","c");
	var bro=cid.substr(0,cid.length-1);
	$("table[id^="+bro+"]").not("[id="+bro+"]").hide();
	$("li[id^=t]").removeClass("outbutton");
	$(this).addClass("outbutton");
	$("#"+cid).show();
	$("#"+tsid).click();
	$("#"+tpid).addClass("outbutton");
});
$("#t0").click();});