$(function(){
		//初期選択
		if($.cookie('selectedRegion') =='0'){ // USA
			$(".price_usd").css("display", "block");
			$("#select_region").val('United States');
			$("#customer_country").val('United States');
		}else if($.cookie('selectedRegion') =='2'){ // Other
			$("#select_region").val('Other Countries');
			$(".price_other").css("display", "block");
			$(".skuform input").attr("disabled", "disabled");
		}else{
			$(".price_usd").css("display", "block");
			$("#select_region").val('United States');
		}
//alert($.cookie('selectedRegion'));
	//選択時動作
	$("#select_region").change(function(){
		var index = this.selectedIndex;
		if(index == '0' || $.cookie('selectedRegion') =='0'){ // USA
			$("#customer_country").val('United States');
			$(".skuform input").removeAttr("disabled");
			$(".field_price").css("display", "none");
			$(".price_usd").fadeIn("nomal");
			$(".currency_code").html("Currency : USD");
			$.cookie('selectedRegion', '0', {expires: 365,path:'/'});
		}
		if(index == '1'){ // Japan
			$(".skuform input").attr("disabled", "disabled");
			$(".field_price").css("display", "none");
			$(".currency_code").fadeOut("fast");
			location.href='http://www.reprocell.com/';
		}
		if(index == '2'){ // Other
			$(".field_price").css("display", "none");
			$(".price_other").fadeIn("nomal");
			$(".currency_code").html("Currency : OTHER");

			//$(".field_price").html("<a href='/en/contact/branches-distributors/'>Contact the distributor of your region</a>");
			$(".skuform input").attr("disabled", "disabled");
			$.cookie('selectedRegion', '4', {expires: 365,path:'/'});
			$(".currency_code").fadeOut("fast");
		}
	});
});

