window.addEvent('domready', function(){

	// *************** SCROLLING NAVIGATION
	
	var scroll = new Fx.Scroll(window, {duration: 1000, wait: false, transition: Fx.Transitions.quadInOut});
	
	$$('.gotohome').addEvent('click', function(event){ event = new Event(event).stop(); scroll.toElement('start'); });
	$$('.gotofourth').addEvent('click', function(event){ event = new Event(event).stop(); scroll.toElement('fourth'); });
	$$('.gotofifth').addEvent('click', function(event){ event = new Event(event).stop(); scroll.toElement('fifth'); });
	$$('.gotothird').addEvent('click', function(event){ event = new Event(event).stop(); scroll.toElement('third'); });
	$$('.gotosecond').addEvent('click', function(event){ event = new Event(event).stop(); scroll.toElement('second'); });
	$$('.gotosixth').addEvent('click', function(event){ event = new Event(event).stop(); scroll.toElement('sixth'); });
	
	// *************** SHOW CASE
	// *************** WEBSITE DESIGN
	
		
}); 	
 	

