jQuery(document).ready(function() {
	
		// Expand Panel
	jQuery('#open').click(function(){
		jQuery('#panel_wrap').slideDown('slow');	
	});	
	
	// Collapse Panel
	jQuery('#close').click(function(){
		jQuery('#panel_wrap').slideUp('slow');	
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	jQuery('#toggle a').click(function () {
		jQuery('#toggle a').toggle();
	});	
	
				
});
