window.addEvent('domready', function(){
			
			/* LINKS */
			var list = $$('.navigation a');
			list.each(function(element) {
				
				var fx = new Fx.Styles(element, {duration:200, wait:false});
				
				element.addEvent('mouseenter', function(){
					fx.start({
						'color': '#000',
						'background-color': '#9CDAF3'
					});
				});
				
				element.addEvent('mouseleave', function(){
					fx.start({
						'color': '#333',
						'background-color': '#88D2F1'
					});
				});
				
			});
			
		}); 