$(document).ready(function() {
	
	// Expand Panel
	$("#open").click(function(){
		$("div#panel").slideDown("fast");
		document.getElementById("panel1").style.display = "block";
		document.getElementById("panel2").style.display = "none";
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		$("div#panel").slideUp("fast");	
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});	
	
	
	// Expand Panel
	$("#open2").click(function(){
		$("div#panel").slideDown("fast");
		document.getElementById("panel1").style.display = "none";
		document.getElementById("panel2").style.display = "block";
	});
	
	// Collapse Panel
	$("#close2").click(function(){
		$("div#panel").slideUp("fast");	
	});
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle2 a").click(function () {
		$("#toggle2 a").toggle();
	});
	
	//CLOSE CLOSE CLOSE CLOSE CLOSE
	//CLOSE CLOSE CLOSE CLOSE CLOSE
	//CLOSE CLOSE CLOSE CLOSE CLOSE
	//CLOSE CLOSE CLOSE CLOSE CLOSE
	//CLOSE CLOSE CLOSE CLOSE CLOSE
	
	// Collapse Panel
	$("#close3").click(function(){
		$("div#panel").slideUp("fast");	
	});
	
	// Collapse Panel
	$("#close4").click(function(){
		$("div#panel").slideUp("fast");	
	});
	
		
});
