jQuery.fn.priceList = function() {

	this.find('input:radio').click(function() {
		var to_show = $(this).val();
		var to_hide = to_show == 'usd'? 'hkd': 'usd';

		$('span.' + to_show).show();
		$('span.' + to_hide).hide();
	});

	$('#currency-selector').show();
	$('#price-comment').hide();
	$('span.currency-div').hide();
	$('span.hkd').hide();

	return this;
}