function orange_bg_swap(id, bg) {
	 var a1 = document.getElementById(id);
	  if (bg != 'none')
		a1.style.background = 'url(http://danielerrante.local/~danielerrante/young/images/orange_ro.jpg)';
		//a1.style.background = 'url(http://www.distributorone.com/young/images/orange_ro.jpg)';
	  else
		a1.style.background = '';
	  return true;
}

function swapout(id, bg) {
	 var a1 = document.getElementById(id);
	 a1.src = bg;
	 return true;
}

window.addEvent('domready', function() {
	if ($('history_reel')) {
			var scroll = new Fx.Scroll('history_reel', {
				wait: false,
				duration: 2500,
				offset: {'x': -270, 'y': -10},
				transition: Fx.Transitions.Expo.easeInOut
			});

			$$('a[href^="#"]').addEvent('click', function(e) {
				new Event(e).stop();
				scroll.toElement($E(this.getProperty('href')));
			});
			/*
			$('knob2').setOpacity(0.5);

			/* Slider 2 
			var mySlide2 = new Slider($('area2'), $('knob2'), {
				steps: 14,	
				offset: 5,
				onChange: function(pos){
					$('upd2').setHTML(pos);
					scroll.toElement('history_reel_' + pos);
				}

			});
			*/
	}
});