$(document).ready(function() {
	jQuery.easing.def = "easeOutBounce";
	// Expand Panel
	$("#open").click(function(){
		$("div#panel").animate({height: 'toggle'}, {duration: 1500, specialEasing: {height: 'easeOutBounce'}	});	
		});
	$("#open").click(function(){
		$("#logo").animate({opacity: 'hide'} );
});

	// Collapse Panel
	$("#close").click(function(){
		$("div#panel").slideUp("slow");	
	});		
	$("#close").click(function(){
		$("#logo").animate({opacity: 'show'} );
});
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});		
		
});
