	$(document).ready(function(){
			
		$.sifr({
			path: '/-layouts/swf/',
			save: true
		});
		
		//$('h6, h2, h3').sifr({ font: 'miso-regular.swf' });
		var panel = false;
			
		// Expand Panel
		$("#open").click(function(){
			$("div#panel").slideToggle("slow");
			panel = true;
		});	
	
		// Collapse Panel
		$("#close").click(function(){
			$("div#panel").slideUp("slow");	
			panel = false;
		});	
			
		$("#structure").mouseover(function(){
			if (panel) {
 				$("div#panel").slideUp("slow");
  				$("#toggle a").toggle();
  				panel = false;
  			}
    	});	
	
		// Switch buttons from "Log In | Register" to "Close Panel" on click
		$("#toggle a").click(function () {
			$("#toggle a").toggle();
		});	
	
	});
