﻿
window.onload=function(){
var i=window.location.href.split(".html")[1].substring(1,2);
if(i==="1"||i==="2"){document.getElementById("kibou"+i).checked=true;}
}

/*----------------------------------------------------------------------------*/

jQuery(function($){
	// pref is jQselectable instance
	var pref = $("#pref").jQselectable({
		set: "fadeIn",
		setDuration: "fast",
		opacity: .9
	});

	$("#zip1").keyup(function(){
		// AjaxZip2
		AjaxZip2.zip2addr(this,"pref","addr");
	}).blur(function(){
		// rebuilds target jQselectable element
		pref.rebuild();
	});
});


