var RedAsylum = {
	
};

jQuery().ready(function() {
	// Automate the product items
	jQuery('form.purchase').each(function(){
		var me = this;
		jQuery(this).find('select').bind('change', function() {
			// Get the price from the rel attribute.. =-)
			var price = jQuery(this).attr('rel');
			
			// set the quantity..
			jQuery(me).find('.qty').text(25 * this.value);
			// set the total cost
			jQuery(me).find('.amount').text(price * this.value);
			
			return true;
		});
	});
});