// JavaScript Document
function showtab(i){
	for(var j = 1; j < 3; j++){
		if(j == i){
			$("#tab" + j).show();
			$("#hand" + j).attr("class","newslihover");
		}
		else{
			$("#tab" + j).hide();
			$("#hand" + j).attr("class","");
		}
	}
}
function showthtab(i){
	for(var j = 1; j < 3; j++){
		if(j == i){
			$("#tabth" + j).show();
			$("#handth" + j).attr("class","newslihover");
		}
		else{
			$("#tabth" + j).hide();
			$("#handth" + j).attr("class","");
		}
	}
}
function showlefttab(i){
	for(var j = 1; j < 3; j++){
		if(j == i){
			$("#tableft" + j).show();
			$("#handleft" + j).attr("class","leftlihover");
		}
		else{
			$("#tableft" + j).hide();
			$("#handleft" + j).attr("class","");
		}
	}
}