(function($) { //* hide the namespace
$(document).ready(function() {
	
	// Expand Panel
	$("#open").click(function(){
		$("div#panel").slideDown("slow");
	
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		$("div#panel").slideUp("slow");	
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#remote_toggle a").toggle();
		$("#toggle a").toggle();
	});		
	
	// Expand Panel
	$("#remote_open").click(function(){
	$("div#panel").slideDown("slow");
	});	

	// Collapse Panel
	$("#remote_close").click(function(){
		$("div#panel").slideUp("slow");	
	});		

	// Switch remote login buttons on click
	$("#remote_toggle a").click(function () {
		$("#remote_toggle a").toggle();
		$("#toggle a").toggle();
	});		

});
})(jQuery); //* hide the namespace
