/**
 * viewRecommendedSeminar
 */

var areaData =
{
"01": ["hokkaido"],
"02": ["touhoku"],
"03": ["touhoku"],
"04": ["touhoku"],
"05": ["touhoku"],
"06": ["touhoku", "niigata"],
"07": ["touhoku", "niigata"],
"08": ["kantoukoushin"],
"09": ["kantoukoushin"],
"10": ["kantoukoushin"],
"11": ["kantoukoushin"],
"12": ["kantoukoushin"],
"13": ["kantoukoushin"],
"14": ["kantoukoushin"],
"15": ["niigata", "hokuriku"],
"16": ["hokuriku", "chubutoukai"],
"17": ["hokuriku", "chubutoukai"],
"18": ["hokuriku", "chubutoukai"],
"19": ["kantoukoushin", "chubutoukai"],
"20": ["kantoukoushin", "chubutoukai"],
"21": ["chubutoukai"],
"22": ["kantoukoushin", "chubutoukai"],
"23": ["chubutoukai"],
"24": ["chubutoukai"],
"25": ["kansai"],
"26": ["kansai"],
"27": ["kansai"],
"28": ["kansai"],
"29": ["kansai"],
"30": ["kansai"],
"31": ["kansai", "chugokushikoku"],
"32": ["kansai", "chugokushikoku"],
"33": ["kansai", "chugokushikoku"],
"34": ["chugokushikoku"],
"35": ["chugokushikoku", "kyusyu"],
"36": ["kansai", "chugokushikoku"],
"37": ["kansai", "chugokushikoku"],
"38": ["chugokushikoku"],
"39": ["kansai", "chugokushikoku"],
"40": ["kyusyu"],
"41": ["kyusyu"],
"42": ["kyusyu"],
"43": ["kyusyu"],
"44": ["kyusyu"],
"45": ["kyusyu"],
"46": ["kyusyu"],
"47": ["okinawa"]
};

$(function() {
	var countryCode;
	var prefCode;
	
	// どこどこJPよりコードを取得
	countryCode = SURFPOINT.getCountryCode();
	prefCode = SURFPOINT.getPrefCode();
	if (countryCode != "JP") {
		$('#topSeminar').find(".seminarArea_kaigai").each(function(event, ui){
			$(this).removeClass("hidden");
		});
	}
	else if (prefCode == "00") {
		$('#topSeminar').find(".recommendedSeminar").each(function(event, ui){
			$(this).removeClass("hidden");
		});
	}
	else if (prefCode) {
		for (var i=0; i<areaData[prefCode].length; i++) {
			$('#topSeminar').find(".seminarArea_" + areaData[prefCode][i]).each(function(event, ui){
				$(this).removeClass("hidden");
			});
		}
	}
});

