			var txt = $('magicWords');
			/*
			var scroll = new Fx.Scroll('demo-wrapper', {
				wait: false,
				fps: 1000,	
				duration: 5500,
				transition: Fx.Transitions.Quad.easeInOut
			});
			if ($('startPos')) {
				scroller('start');
			}
			*/
			function displayDiv(div) {
				if (div === 'listen' && $('listen').getStyle('display') === 'none') {
					$('listen').setHTML('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0"  height="160" width="400"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="http://allstringsandjoints.com/xspf_player.swf?&amp;autoload=true&amp;autoplay=true&amp;playlist_url=http://allstringsandjoints.com/play.xspf"/><param name="quality" value="high"/><param name="bgcolor" value="#e6e6e6" /><embed src="http://allstringsandjoints.com/xspf_player.swf?autoload=true&amp;playlist_url=http://allstringsandjoints.com/play.xspf&amp;autoload=false&amp;autoplay=false" quality="high" bgcolor="#e6e6e6" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" height="160" width="400"></embed></object>');	//Necessary to re-write audio player each time :( because hiding the div does not stop playback.
					$('listen').setStyle('display', 'block');	//display the audio player
				} else {
					$(div).setStyle('display', 'block');
				}
			}
			function hideAll() {
				$('listen').empty();
				$('listen').setStyle('display', 'none');
				$('pictures').setStyle('display', 'none');
				$('videos').setStyle('display', 'none');
			}
			function scroller(scrollHere) {
				//txt.value = '';
				hideAll();
				//scroll.$events.onComplete.pop();
				displayDiv(scrollHere); 
				//scroll.toElement(scrollHere + 'Pos');

				
			}
			//Start Accordion
			var accordion = new Accordion('h5.accordEl', 'div.accordEl', {
			//	opacity: false,
				onActive: function(toggler, element){
					toggler.setStyle('color', '#FFFFFF');
					toggler.setStyle('font-weight', 'bold');
				},
				fixedHeight: 300, 
				onBackground: function(toggler, element){
					toggler.setStyle('color', '#FFFFFF');
					toggler.setStyle('font-weight', 'bold');
				}
			}, $('accordion'));
 			//First toggler -  necessary here so that the 2nd toggler starts opened.
			var newTog = new Element('h5', {'class': 'toggler', 'id': 'accord1', 'styles': {'color':'#FFFFFF','font-weight':'bold' }})//.setHTML('News');
 			//First content
			var newEl = new Element('div', {'id': 'accordBody1', 'class': 'accordCont'}).setHTML("<p class=\"top\">The Bazaar Caf&eacute; in the Richmond necessitates that you not plug in; not even your vocals are mic'd. This past weekend we played there and the Guinness, I think, helped to carry our voices to the back of the venue.</p><p>Electronics are fun as hell, everyone loves samples and bleepy things. Yet it's a good feeling to not have to think about the levels or monitors. Adam missed his delay pedal and pitchshifter quite a bit, but we focused more on harmonies than on anything with blinking lights and it was good conditioning.</p><p>They also had port wine, but we didn't want the sound to be quite that drenched.</p><p>--</p>");
			//accordion.addSection(newTog, newEl, 0);
			//End Accordion
			//Begin Gradient Height
			//For information.html only
			function setGradients() {
				setTimeout("$('gradientleft').setStyle('height', 492);$('gradientright').setStyle('height', 492)", 500);
			}
			if($('accordion')) {
				YAHOO.util.Event.onContentReady('footer', setGradients);
			}
