/*
 * Currency Selector. Copyright (c) FabulaTech LLP. http://www.fabulatech.com/
 * Requirements: jquery.
 */
function currency(curr){
	var currencies = new Array('Usd','Eur','Gbp');
	for (x in currencies) {
		var turnObj = $("."+currencies[x]);
		var turnLink = $(".Currency"+currencies[x]);
		if (currencies[x] == curr) {
			turnObj.css({'display' : ''});
			turnLink.css({'text-decoration' : 'underline'});
		} else {
			turnObj.css({'display' : 'none'});
			turnLink.css({'text-decoration' : 'none'});
		}
	}
}
