function getHomeUser() {
	$.get("/ajax/?m=user_action&ac=get_home_user_status&SessionId=" + Math.random(), function(data) {
		$("#index_user").html(data);
	});
}
function showSearchTab(index) {
	try {
		document.getElementById("stab_m").className = 'common';
		document.getElementById("stab_v").className = 'common';
		document.getElementById("stab_p").className = 'common';
		document.getElementById("stab_n").className = 'common';
		document.getElementById("stab_" + index).className = 'current';
	} catch (e) {}
	$("#search_m").hide();
	$("#search_v").hide();
	$("#search_p").hide();
	$("#search_n").hide();
	$("#search_" + index).show();
}
