var menu={
	show:function(p_sId){
		$(p_sId).style.display = 'block';
	},
	hide:function(p_sId){
		$(p_sId).style.display = 'none';
	}
}