var previous;

function creditTip(id)
{
	$.getJSON("ajax_credit.php",{id:id},function(credit){
		alert(dump(credit));
	});
}

$(document).ready(function(){
	$('h4.view').click(function(){
		$(this).next().toggle();
		$(this).parent().parent().toggleClass('tall');
		$(this).toggleClass('show');
	});
	
	$('div.colour').removeClass('tall');
	$('table.prices').hide();
});