// JavaScript Document




function showtab(_t) {
	//hide all of them
	$('#info div').css('display','none');
	$('a').removeClass("active");
	
	$('a#b_'+_t).addClass("active");
	
	//show the selected one
	$('#'+_t).css('display','block');
	
}



