$(document).ready(function(){
	$('.tanning_unit table.price').hide();
	$('.tanning_unit .price_link').toggle(function(){
		$(this).parents('.tanning_unit').find('table.price').slideDown();
		$(this).removeClass('see-prices');
		$(this).addClass('hide_prices');
		$(this).text('Hide Prices');
		return false;
	}, function() {
		$(this).parents('.tanning_unit').find('table.price').slideUp();
		$(this).removeClass('hide_prices');
		$(this).addClass('see-prices');
		$(this).text('Show Prices');
		return false;
	});
});