// JavaScript Document
function go_url(value){
	switch(value){
		case 'news': location='/scrpage/news.php'; break;
		case 'about': location='/aboutus.html'; break;
		case 'rooms': location='/price.html'; break;
		case 'member': location='/scrpage/login.php'; break;
		case 'orders': location='/onlineorder.html'; break;
		case 'board': location='/scrpage/board.php'; break;
	}
}