$(document).ready(function() {
	
	// Point the Login link to the top of this page
	$("#open").attr({href: "#"});	
	
	// Expand Panel
	$("#open").click(function(){
		//$("div#panel").slideDown("slow"); //Substituted method to avoid hidding and showing so that button will work in IE8
		$("div#panel").animate({
			height: '+=170px'
		}, 1000, 'swing');
	
	});
	
	// Collapse Panel
	$("#close").click(function(){
		//$("div#panel").slideUp("slow"); //Substituted method to avoid hidding and showing so that button will work in IE8
		$("div#panel").animate({
			height: '-=170px'
		}, 1000, 'swing');	
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});		
		
});