function getIndexContent() {
	var customer_cookie = $.cookie('customer_cookie');
	var pap_status = $.cookie('pap_status');
	var login_user = $.cookie('LOGIN_USER');

	var index = 0;

	if (customer_cookie != null && customer_cookie != "" && customer_cookie != "\"\"" && pap_status != null && (pap_status == "PAP_M" || pap_status == "PAP_GOLD_MEMBER")) {
		// PAP
		index = 2;
	} else if (customer_cookie != null && customer_cookie != "" && customer_cookie != "\"\"") {
		// KIZON
		index = 1;
	} else if (login_user != null && login_user != "" && login_user != "\"\"") {
		// MIKOMI
		index = 0;
		$('#n-subtabs-1').hide();
		$('#n-subtabs-2').show();
	}
	$('#index_info').tabs('select',index);
}

