// localization specific DOM edits

$(function(){
	// jQuery goes in here
	// if you need to make locale based changes
	
	if ($("span.currencyOpt").length > 0) {
		var optionalCurrencyDisplay = $("span.currencyOpt").html();
		
		if ( (optionalCurrencyDisplay == "msehup.currency.option") || (optionalCurrencyDisplay == " ") || (optionalCurrencyDisplay == "&nbsp;") ) { 
			$("span.currencyOpt").remove();
		} else if (1!=1) { // make true for testing
			alert("removing:" + optionalCurrencyDisplay); // eg. "*$20 CHF"
			$("span.currencyOpt").remove();
		}
	}

});
