function showTag(){
	$("#hi_main").fadeIn("slow");
	clearTimeout(timer1);
}

function hideTag(){
	$("#hi_main").fadeOut("slow");
	setTimeout(winclo,800);
}

function showTag2(){
	$("#tpx_area").slideDown("slow");
	clearTimeout(timer2);
}

function hideTag2(){
	$("#tpx_area").slideUp("slow");
	setTimeout(winclo,800);
}

function winclo(){
	window.close();
}

function showWN(){
	$("#wn").fadeIn("slow");
	document.getElementById("live").style.display ="none";
}
function hideWN(){
	$("#wn").fadeOut("slow");
}
function showLive(){
	$("#live").fadeIn("slow");
	document.getElementById("wn").style.display ="none";
}
function hideLive(){
	$("#live").fadeOut("slow");
}
function showAlbum(){
	$("#album").fadeIn("slow");
}
function hideAlbum(){
	$("#album").fadeOut("slow");
}

