// jQuery
$(document).ready(function(){

	// hide form on pageload
	$(".paypal").hide();
	
	// show form on register click
	$("#register1").click(function(){
		$(".dtstart").hide();
		$(".location").hide();
		$(".btn").hide();	
		$(".time").hide();	
		$("#paypal1").show();
		});
	
	$("#register2").click(function(){
		$(".dtstart").hide();
		$(".location").hide();
		$(".btn").hide();	
		$(".time").hide();	
		$("#paypal2").show();
		});
	
	$(".goHome a").click(function(){
		$(".dtstart").show();
		$(".location").show();
		$(".btn").show();	
		$(".home").show();
		$(".time").show();
		$(".paypal").hide();
		});

});