
//検索

function multipleSearch(){
	Word = "";
	sKey = document.getElementById('multipleSearchForm').keyword.value;
		if(sKey.length > 0){
		Word = sKey;
	}
	lprice = "";
	if(document.getElementById('multipleSearchForm').minprice.value.length > 0) {
		lprice = "&minprice=" + document.getElementById('multipleSearchForm').minprice.value;
	}
	hprice = "";
	if(document.getElementById('multipleSearchForm').maxprice.value.length > 0) {
		hprice = "&maxprice=" + document.getElementById('multipleSearchForm').maxprice.value;
	}

	Word = "http://www.tanabesports.com/fs/skier/GoodsSearchList.html?keyword=" + EscapeSJIS(Word) + lprice + hprice + "&sort=n";
	if(Word.length > 0) {
//		location.href = "'"+Word+"'";
		location.href = Word;
	}

}

// top スライドショー

function slideSwitch() {
	var $active = $('#slideshow img.active');
 if ( $active.length == 0 ) $active = $('#slideshow img:last');
 var $next =  $active.next().length ? $active.next() : $('#slideshow img:first');
 $active.addClass('last-active');
 $next.css({opacity: 0.0})
 .addClass('active')
 .animate({opacity: 1.0}, 1000, function() {
  $active.removeClass('active last-active');
 });
}
$(function() {
 setInterval( "slideSwitch()", 4000 );
});

//別ウインドウ
function openWindow(openURL){
if (window.open) { window.open(openURL,'open','scrollbars=yes,Width=800,Height=750'); return false; };
}


