window.addEvent('domready', function() {

//Tooltip
var customTips = $$('.tooltip');
var toolTips = new Tips(customTips, {
	className: 'tip_sitemap'
});

//Smooth scrolling enabled
//new SmoothScroll({options}, window);
new SmoothScroll({duration:700}, window); //700 milliseconds to get there

// Link management
$('gototop').set('opacity','0').setStyle('display','block');

// Scrollspy instance
var ss = new ScrollSpy({
		min: 200,
		onEnter: function(position,state,enters) {
			$('gototop').fade('in');
		},
		onLeave: function(position,state,leaves) {
			$('gototop').fade('out');
		},
		container: window
	});


//  MENU


// END
});
