////////////////////////////////////////////////////////////////////////////////
//
//	[ファイル名]	home.js
//	
//	[文字コード]	utf-8
//	
//	[概要]	
//
////////////////////////////////////////////////////////////////////////////////
$(function(){
	//新着情報ストライプ
	$("#sectionNews dd:even").each(function(){
		$(this).addClass("even");
	});
	
	//都道府県別検索selectジャンプ
	$("#sectionMapSearch p.buttonSearchSmall").each(function(){
		$(this).click(function(){
			var href = this.parentNode.getElementsByTagName("select").item(0).value;
			if(href!=="#" && href!==""){
				var name = this.parentNode.getElementsByTagName("select").item(0).name
				var base = "./list/pref";
				if (name=="pref1") {
					base = base + href + "u.html";
				} else if (name=="pref2") {
					base = base + href + "t.html";
				}
				location.href = base;
			}
			return false;
		});
	});
});
