	window.addEvent('domready', function(){
		var list = $$('ul.arrow li');
		list.each(function(element) {
			var first =  element.getFirst();
			if ( !first || first.getTag() != 'a' ) return;
			var overfx = new Fx.Styles( first, {'duration': 300, 'wait': false});
			var tocolor = '0c96ca';
			var fromcolor = '090d15';
			element.mouseouted = true;
			element.addEvent('mouseenter', function(){
				overfx.start({
					'background-color': tocolor,
					'width': 180,
					'color': 'fff'
				});
			});
			
			element.addEvent('mouseleave', function(){
				overfx.start({
					'background-color': fromcolor,
					'width': 150,
					'color': '646464'
				});
			});
			
		});
	}); 

	
		
 