function setCurrency(currency) {
	var cookieVal = '';
	cookieVal = readCookie('nd_currency');
	currentCurrency = cookieVal;

	if(currentCurrency != currency) {
		// change to the cookie value, or the default value
		createCookie('nd_currency',currency,30) ;
	}
	document.location.reload();
}
