$(document).ready(function() {
	
	// Expand Panel
	$("#open").click(function(){
		$("#panel").slideDown(300);
		// $(".tab").animate({height: 500 });
	
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		$("#panel").slideUp(300);	
		 //$(".tab").animate({height: 100 });
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});		
		
});
