//  In my case I want to load them onload, this is how you do it!
		// 
		//Event.observe(window, 'load', loadAccordions, false);
	
		//
		//	Set up all accordions
		//
		function loadAccordions() {
			
			
			var bottomAccordion = new accordion('vertical_container2');
			
			
			
			// Open first one
			bottomAccordion.activate($$('#vertical_container2 .accordion_toggle')[0]);
			
			// Open second one
			//topAccordion.activate($$('#horizontal_container .horizontal_accordion_toggle')[2]);
		}


function initScrollLayer() {
  // arguments: id of layer containing scrolling layers (clipped layer), id of layer to scroll, 
  // if horizontal scrolling, id of element containing scrolling content (table?)
  var wndo = new dw_scrollObj('wn2', 'lyr12', 't1');
  
  // pass id's of any wndo's that scroll inside tables
  // i.e., if you have 3 (with id's wn1, wn2, wn3): dw_scrollObj.GeckoTableBugFix('wn1', 'wn2', 'wn3');
  dw_scrollObj.GeckoTableBugFix('wn2'); 
}
