$(document).ready(function() {
	
	// Expand Panel
	$("#open").click(function(){
		$("div#panel").slideDown("slow");
	
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		$("div#panel").slideUp("slow");	
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});	
	
	// Collapse the panel when the panel bg is clicked.
//$("#panel").bind("click",function(event){
//$("#panel").slideUp("slow");
//$("#toggle a").toggle();
//});
// Prevent the panel form elements from trigging a panel close.
//$("#panel *").bind("click",function(event){
//event.stopPropagation();
//event.preventDefault();
//});	
		
});