// ----------------------------------------------------------------------------
// name:
// in:
// out:
// note:
// ----------------------------------------------------------------------------
function pagejump(num) {
	switch (num) {
		case 0:
			location.href = nonssl + "/main/";
			break;
		case 1:
			location.href = nonssl + "/news/";
			break;
		case 2:
			location.href = nonssl + "/event/";
			break;
		case 3:
			location.href = "http://www.google.co.jp/";
			break;
		case 4:
			location.href = nonssl + "/feature/";
			break;
		case 5:
			location.href = nonssl + "/technical/";
			break;
		case 6:
			location.href = nonssl + "/profile/";
			break;
		case 7:
			location.href = nonssl + "/search/all/";
			break;
		case 8:
			location.href = nonssl + "/screensaver/";
			break;
		case 9:
			location.href = nonssl + "/picture/";
			break;
		case 10:
			location.href = nonssl + "/trial/";
			break;
		case 11:
			location.href = nonssl + "/info/";
			break;
		case 12:
			location.href = nonssl + "/search/";
			break;
		case 13:
			location.href = nonssl + "/prokakuking/";
			break;
		case 14:
			location.href = nonssl + "/fanclub/";
			break;
		case 15:
			location.href = nonssl + "/cs_gaora/";
			break;
		case 16:
			location.href = nonssl + "/entry/";
			break;
		case 17:
			location.href = nonssl + "/info/howto/";
			break;
		case 18:
			location.href = nonssl + "/ranking/";
			break;
		default:
			break;
	}
}

