﻿function starttabs(){
	$("#tabblock > ul > li > a").click(function(){return false;});

	var prevTab;

	$("#tabblock div").each(function(){
		$this = $(this);
		if($this.hasClass("show")){
			$this.show();
			prevTab = "#" + $this.attr("id");
		}
	});

	$("#tabblock > ul > li > a").click(function(){
		gotoTab = $(this).attr("href");
		gotoTab = gotoTab.substr(gotoTab.length-7,7);
		$(this).parent().siblings().children().removeClass("selected");
		$(prevTab).hide();
		$(gotoTab).show();
		$(this).addClass("selected")
		prevTab = gotoTab;
	});
}