	var timeA;
	var timeB;
	var SelectState;
	var listaAuki=false;
	SelectState='up'

	function Stop()
	{
		timeB=new Date();
	}
	function Start()
	{
		timeA=new Date();
	}

function changeShopFrontpage(el) {

var value=document.dropdown.sivu.options[document.dropdown.sivu.selectedIndex].value;
window.location=value;
}

	function setSelectState(thisValue) {
	if (thisValue=='down'){
		Start();
	}
	if ((thisValue=='up')&&(listaAuki==true)){
		changeShopFrontpage();
	}	
	if ((thisValue=='up')&&(listaAuki==false)){
		Stop();
		if ((timeB-timeA) > 200){
		changeShopFrontpage();
		}else{
		listaAuki=true;
		}
	}
	SelectState=thisValue;
	}

