﻿// window表示時読込 //
	window.onload = function(){
		divObj = new fx.Height("search_movebox", { duration:500 });
		divObj.toggle();
		fitIfr('ifrleft');
		initRollovers();
	}

// こだわり検索アニメーションとボタンの表示＆非表示 //
	function SwitchDisplay(no){
		if(no == "no1"){
			document.getElementById("switch1").style.display = "block";
			document.getElementById("switch2").style.display = "none";
			divObj.toggle();
		}else if(no == "no2"){
			document.getElementById("switch1").style.display = "none";
			document.getElementById("switch2").style.display = "block";
			divObj.toggle();
		}
	}
