function menuLink(one, two) {
	if (one == 0) {
		if (two == 0) {
			location.href = "sub.html#";
		} else if (two == 1) {
			location.href = "sub.html#/album/";
		} else if (two == 2) {
			location.href = "sub.html#/concert/";
		} else if (two == 3) {
			location.href = "sub.html#/movie/";
		} else if (two == 4) {
			location.href = "sub.html#/drama/";
		}
	} else if (one == 1) {
		location.href = "notice.php";
	} else if (one == 2) {
		if (two == 0) {
			location.href = "fromrain.php";
		} else if (two == 1) {
			location.href = "photo.php";
		} else if (two == 2) {
			location.href = "media.php";
		}
	}
}

function goMain() {
	location.href = "index.html";
}

function goEng() {
	location.href = "http://rain-jihoon.com/n2/eng/";
}

function goKor() {
	location.href = "http://rain-jihoon.com/n2";
}

function openImage(url) {
	window.open(url, "rain", "scrollbars=1, status=0, resizable=yes, width=400, height=400");
}

function openVideo(url) {
	window.open(url, "rain", "scrollbars=0, status=0, width=620, height=540");void(0);
}


