var link = [
	"/16cha/",
	"/16cha/lineup/",
	"/16cha/secret/",
	"/16cha/quiz/",
	"/16cha/cm/",
	"/16cha/tushin/"
];

function switch_cookie() {
	var cookie = $.cookie('counter');
	var menu;

	menu = $("#gmenu01");
	if(menu.get(0) != undefined) {
		if(cookie == 1) {
			menu.get(0).href = "javascript:void(0);";
			menu.click(function(){
				location.href = link[0]+"top.html";
				return false;
			});
		} else {
			menu.get(0).href = link[0]+"top.html";
			menu.unbind();
		}
	}
	menu = $("#gmenu02");
	if(menu.get(0) != undefined) {
		if(cookie == 1) {
			menu.get(0).href = "javascript:void(0);";
			menu.click(function(){
				location.href = link[1]+"top.html";
				return false;
			});
		} else {
			menu.get(0).href = link[1]+"index.html";
			menu.unbind();
		}
	}
	menu = $("#gmenu03");
	if(menu.get(0) != undefined) {
		if(cookie == 1) {
			menu.get(0).href = "javascript:void(0);";
			menu.click(function(){
				location.href = link[2]+"top.html";
				return false;
			});
		} else {
			menu.get(0).href = link[2]+"index.html";
			menu.unbind();
		}
	}
	menu = $("#gmenu04");
	if(menu.get(0) != undefined) {
		if(cookie == 1) {
			menu.get(0).href = "javascript:void(0);";
			menu.click(function(){
				location.href = link[3]+"top.html";
				return false;
			});
		} else {
			menu.get(0).href = link[3]+"index.html";
			menu.unbind();
		}
	}
	menu = $("#gmenu05");
	if(menu.get(0) != undefined) {
		if(cookie == 1) {
			menu.get(0).href = "javascript:void(0);";
			menu.click(function(){
				location.href = link[4]+"top.html";
				return false;
			});
		} else {
			menu.get(0).href = link[4]+"index.html";
			menu.unbind();
		}
	}
	menu = $("#gmenu06");
	if(menu.get(0) != undefined) {
		if(cookie == 1) {
			menu.get(0).href = "javascript:void(0);";
			menu.click(function(){
				location.href = link[5]+"top.html";
				return false;
			});
		} else {
			menu.get(0).href = link[5]+"index.html";
			menu.unbind();
		}
	}
}

$(function(){
	
	switch_cookie();
	
});