// JavaScript Document


function langshow(divshow,divhide,interval){
	setTimeout(function timer(){
	document.getElementById(divshow).className="show";
	document.getElementById(divhide).className="hide";
	},interval);
}
