// JavaScript Document
function tab_show(val1)
{	
	$(".tab_content_div").hide();
	$("#tab_content_"+val1).show();
	$(".tab_head li").removeClass();
	$("#tab_"+val1).addClass("on");
}
