$(document).ready(function(){
	
	
	$('#more_text').hide();
	$('#more_link').click(function(){
		$(this).parent('p').hide();
		$('#more_text').show();
		return false;
	});
	$('#less_link').click(function(){
		$('#more_text').hide();
		$('#more_link').parent('p').show();
		// return false;
	});
	
	$('div.paypal_form').hide();
	$('a.paypal_link').show();
	$('a.paypal_link').click(function(){
		var pp_id = $(this).attr('href');
		var theForm = $(pp_id).children('form');
		var theForm = theForm[0];
		$(theForm).submit();
		return true;
	});
	
	$('#support_form').hide();
	$('#donate_now').show();
	$('#donate_now').click(function(){
		var theForm = $('#support_form');
		var theForm = theForm[0];
		$(theForm).submit();
		return true;
	});
	
});
