// <![CDATA[
		var ua = navigator.userAgent;
		if((ua.indexOf('Mac') > -1) && (ua.indexOf('MSIE') > -1)){
			if(confirm('This browser is very broken.')) location.href='http://getfirefox.com';
		}else{
			var smoove = function(evt){
				Event.stop(evt);
				this.onclick = function() {return false;};
				var t = this.uri[1];
				if($(t)) new Effect.ScrollTo(t, {offset: -24});
			}
			Event.observe(window,'load',function(){
				$$('a').each(function(el){
					if(el.href && el.href.indexOf('#') > -1){
						el.uri = el.href.split("#");
						el.observe('click', smoove.bind(el));
					}
				});
			});
		}
		// ]]>