// Let's hope this works?

$(document).ready(function() {
	
	// Collapse Panel
		$(".toggle a").click(function(){
		$("div#panel").slideDown("slow");
		});
	
	
	// Collapse Panel
		$(".toggle2 a").click(function(){
		$("div#panel").slideUp("slow");
		});
	
	// Switch buttons from ÒLog In | RegisterÓ to ÒClose PanelÓ on click
		$(".toggle a").click(function () {
		$(".toggle a").toggle();
		});
		
	// Switch buttons from ÒLog In | RegisterÓ to ÒClose PanelÓ on click
		$(".toggle a").click(function () {
		$(".toggle2 a").toggle();
		});
		
	// Switch buttons from ÒLog In | RegisterÓ to ÒClose PanelÓ on click
		$(".toggle2 a").click(function () {
		$(".toggle2 a").toggle();
		});
		
	// Switch buttons from ÒLog In | RegisterÓ to ÒClose PanelÓ on click
		$(".toggle2 a").click(function () {
		$(".toggle a").toggle();
		});
		

});


