// Valuta-vælger

var timeout = null;

function showCurrencyChanger() {
	document.getElementById('currency_popup').style.visibility = 'visible';	
}

function currencyChangerOut() {
	timeout = setTimeout("hideCurrencyChanger()", 300);
}

function hideCurrencyChanger() {
	document.getElementById('currency_popup').style.visibility = 'hidden';	
}

function clearCurrencyOut() {
	clearTimeout(timeout);	
}
