function msgAction($content, $time, $cls) {
	$("#msg").stop(false,true);
	$("#msg").html($content);
	$("#msg").show();
	$("#msg").fadeOut($time);
}
function msgShow() {
	$("#msg").stop(false,true);
	$("#msg").show();
}
function msgFade($time) {
	$("#msg").fadeOut($time);
}
