var header = $('header');
var fx = new Fx.Styles(header, {duration:350, wait:false});
header.addEvent('mouseenter', function(){
	fx.start({
		'color': '#ffffff',
	});
});
header.addEvent('mouseleave', function(){
	fx.start({
		'color': '#282828',
	});
});
var list = $$('#nav a#nav1');
list.each(function(nav) {
	var fx = new Fx.Styles(nav, {duration:150, wait:false});
	nav.addEvent('mouseenter', function(){
		fx.start({
			'color': '#ffffff',
			'text-indent': '10px',
			'background-position': '3px 7px',
			'background-color': '#222222',
			'border-top-color': '#282828',
			'border-left-color': '#121212',
			'border-right-color': '#282828',
			'border-bottom-color': '#121212',
		});
	});
	nav.addEvent('mouseleave', function(){
		fx.start({
			'color': '#181818',
			'text-indent': '0px',
			'background-position': '-12px 7px',
			'background-color': '#222222',
			'border-top-color': '#282828',
			'border-left-color': '#121212',
			'border-right-color': '#282828',
			'border-bottom-color': '#121212',
		});
	});
});