//when the dom is ready
window.addEvent('domready', function() 
{
	
	$$('#menu li a').addEvents({
	
		'mouseenter':function(){
			
			this.set('morph', {duration: '250'}).morph({
					'background-color':'#1b824f',
					//color: '#3a6d1c',
					//'font-weight': 'bold', //color: '#3a6d1c',
					'padding-left': '30px'
				}
			);
	
		},
		'mouseleave':function(){
		//	this.set('tween', {duration: '300'});
			//this.tween('background-color','#86ce5b');
			
			this.morph({
					'background-color':'#22915a',
					color: '#fff',
					'padding-left': '20px'
				}
			);

		}
	});
	

	new SmoothScroll();

	
	
});
