		// <![CDATA[
		//
		// Change these parameters to adjust panel height
		var closedHeight = 95;
		var openHeight = 402;

		function togglePanel(url) {
			var panel = document.getElementById("flash");

			// Get the link that we need to toggle the text for
			var switchLink = document.getElementById("switchlink");

			// If the panel is CLOSED
			if ( panel.offsetHeight != openHeight ) {
				switchLink.innerHTML = "Close";
				$("#switch").removeClass("switchClose");
				$("#switch").addClass("switchOpen");
				var t = new Tween(panel.style,"height",	Tween.regularEaseInOut, panel.offsetHeight, openHeight, 0.4, "px" );
				t.start();
			}

			// If the panel is OPEN
			if ( panel.offsetHeight != closedHeight ) {
				switchLink.innerHTML = "Open";
				$("#switch").removeClass("switchOpen");
				$("#switch").addClass("switchClose");
				var t = new Tween(panel.style,"height",	Tween.regularEaseInOut, panel.offsetHeight, closedHeight, 0.4, "px" );
				t.start();
				if(url) {
					// Go to URL after panel has closed
					setTimeout(function (){location.href=url; }, 500);
				}
			} else {
				if (url) {
					//
					// Go to URL now
					location.href=url;
				}
			}
		}

		function dropdown() {
			var sfEls=document.getElementById("navigation").getElementsByTagName("LI");
			for (var i=0; i<sfEls.length; i++) { 
				sfEls[i].onmouseover=function() { this.className+=" sfhover"; }
				sfEls[i].onmouseout=function() { this.className=this.className.replace(new RegExp(" sfhover\\b"), ""); }
			}
		}
		
		if (window.attachEvent) window.attachEvent("onload", dropdown);
      
  // ]]>