var PriceTable = Class.create();
PriceTable.prototype = {
	initialize: function() {
		this.pricetable = $('prices');
		this.hideTable.bind(this);
		this.showTable.bind(this);
	},
	hideTable: function() {
		Effect.BlindUp(this.pricetable, { duration: 0.5 });
	},
	showTable: function() {
		Effect.BlindDown(this.pricetable, { delay: 0.5, duration: 0.5 });
	}
};