window.addEvent('domready', function() {
		var list = $$('#nav li a');
list.each(function(element) {
 
	var fx = new Fx.Styles(element, {duration:200, wait:false});
 
	element.addEvent('mouseenter', function(){
		fx.start({
		if(!window.ie6){:
			'margin-right': 20,
		}
			'color': "#003300"
		});
	});
 
	element.addEvent('mouseleave', function(){
		fx.start({
		if(!window.ie6){:
			'margin-right': 0,
		}
			'color': "#003399"
		});
	});
 
});
});

