// Global URAPS JavaScript Document
<!--
function openNewWindow(URLtoOpen, windowName, windowFeatures) { newWindow=window.open(URLtoOpen, windowName, windowFeatures); }
//-->
<!-- menu shit -->
	ddaccordion.init({
		//Shared CSS class name of headers group that are expandable
		headerclass: "expandable", 
		
		//Shared CSS class name of contents group
		contentclass: "categoryitems", 
		
		//Collapse previous content (so only one open at any time)? true/false 
		collapseprev: true, 
			
		//index of content(s) open by default [index1, index2, etc]. [] denotes no content
		defaultexpanded: [0], 
			
		//Should contents open by default be animated into view?
		animatedefault: false, 
			
		//persist state of opened contents within browser session?
		persiststate: true, 
			
		//Two CSS classes to be applied to the header when it's collapsed and expanded, respectively ["class1", "class2"]
		toggleclass: ["", "openheader"], 
			
		//Additional HTML added to the header when it's collapsed and expanded, respectively  ["position", "html1", "html2"] (see docs)
		togglehtml: ["prefix", "", ""], 
			
		//speed of animation: "fast", "normal", or "slow"
		animatespeed: "normal" 
		})
<!-- Menu shit -->	