// © The Roundhouse, 2007

Window.onDomReady( function()
				   {
					   // get all anchors in the nav
					   var arrAnchors = $$('#supernav a').concat($$('#sitewide a'));
					   arrAnchors.each( function(objAnchor)
										{
											objAnchor.addEvent('click', function()
																		{
																			$('flashmasthead').setStyle('display', 'none');
																		});
										});
					   
					  
					  /*document.scrollers 		= new TheRoundhouse.Frameworks.Scroller();
					  document.scrollers.init("testbed.theroundhouse.local", false);
					  document.scrollers.createScrollbars({strHolderId: 		'innercontent',
															strBarId:			'scrolltarget',
															addPadding:			true,
															iHeight:			'200px',
															iScrollTrackWidth: 	'15px',
															iScrollBarWidth: 	'5px',
															strPosition: 		'left'});*/
				   });