$(document).ready(function(){
	$('.accordion').hide();
	$('.head').click(function() {
		$(this).next('.accordion').toggle('slow');
		return false;
	})
});

$(document).ready(function(){
	$('.extendAccordion').hide();
	$('.extendPayment').click(function() {
		var curText = $(this).html();
		$(this).next('.extendAccordion').toggle('slow');
		if(curText=='Extend Trial')
			$(this).html('Hide Form')
		else
			$(this).html('Extend Trial')
		return false;
	})
});
