/*
	calculator.js performs all calculations in US dollars. I don't mean to
	offend anybody, and we all know the dollar is falling, but I'm comfortable
	using the dollar as the reference unit.
	
	Currencies *other* than the US Dollar are defined relative to
	the US dollar. So "yen" is, as of July 16th 2007, (122.026 * "usd")
	
	It ought to be relatively trivial to keep this file updated.	

	UPDATES:
		2/16/08 JMK: File updated to reflect current exchange rates.
                6/3/08 SAO: File updated to reflect current exchange rates.
*/
conversion_rates = {
	usd: 1,
	yen: 104.41,
	euro: 0.643,
	yuan: 6.932,
	pound: 0.508
};