$(document).ready(function() {
	var regFrmSRC;
	// Expand Panel
	$("#open").click(function(){
		$("div#panel").slideDown("slow");
		regFrmSRC = $("iframe#regFrame").attr('src');
	
	});	
	
	// Collapse Panel
	$("#close").click(function(){		
		$("div#panel").slideUp("slow");	
		$("iframe#regFrame").attr('src', regFrmSRC);
		$('#panelTitle').html(oldTitle);
		$('#close').html(oldClose);
	});		
	
	// Switch buttons from "Register" to "Cancel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});		
		
});

function closePanel(){
	$("div#panel").slideUp("slow");	
	$("iframe#regFrame").attr('src', regFrmSRC);
	$('#panelTitle').html(oldTitle);
	$('#close').html(oldClose);
}

