/*	document.observe('dom:loaded', function() {
		$$('.currency_selector option').each(function(elmt) {
			elmt.observe('click', function(ev) {
				// Code to respond to each click goes here
				alert(ev.target.innerHTML);
			});
		});

	});

*/




jQuery(document).ready(function(){
	jQuery(".currency_selector").bind("click", function(){
		var new_currency = jQuery(this).attr("value");
		jQuery(".currency").html(new_currency);
	});
});