/* Mootools Tips */
window.addEvent('domready', function(){
			/* Tips 2 */
			var Tips2 = new Tips($$('.Tips'), {
				initialize:function(){
					this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
				},
				onShow: function(toolTip) {
					this.fx.start(1);
				},
				onHide: function(toolTip) {
					this.fx.start(0);
				}
			});
			// Create the accordian
			var accordion = new Accordion('h3.atStart', 'ul.atStart', {
	show: 'none',
	alwaysHide: true,
	start: 'all-closed',
	duration: 500,
	onActive: function(toggler, element){
		toggler.setStyle('background-color', '');
	},
 
	onBackground: function(toggler, element){
		toggler.setStyle('background-color', '');
	}
}, $('accordion'));
		}); 
/* Mootools Smooth Scroll */
window.onDomReady(function(){ new SmoothScroll({duration: 1800}); });