// 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();
		}
	}
	// content sometimes is input with bad links to 'arrow up' graphic, see src URL below
	if ($('#TermsOfUseArea').length > 0) {
		$('img[alt="Top of page"]').attr('src','http://www.microsoft.com/library/gallery/templates/MNP2.Common/images/arrow_px_up.gif');
	}

});