window.addEvent('load', function() {	new SmoothScroll({ duration:700 }, window); //700 milliseconds to get there  // 	var scroller = new Fx.Scroll('sticky', {// 		wait: false,// 		transition: Fx.Transitions.Quad.easeInOut,// 		wheelStops:false// 	});	window.addEvent('scroll', function(e) {		if ($('sticky')) {			if (window.getScrollTop() > 117) {				$('sticky').setStyle('top',window.getScrollTop());			} else {				$('sticky').setStyle('top','117px');			}		}	});});