window.addEvent("domready", addFadeEffects);

/***********************************************/

function addFadeEffects() {
	$$('#navlist a').each(function(link) {
		var overfx = new Fx.Styles(link, {'duration': 250, 'wait': false});
		link.addEvent('mouseover', function() {
			overfx.stop();
			overfx.start({
				'background-color': 'de7047',
				'color': 'fff'
			});
		});
		link.addEvent('mouseout', function() {
			overfx.stop();
			overfx.start({
				'background-color': 'ffde8d',
				'color': '333'
			});
		});
	});

	$$('a.normal').each(function(link) {
                var overfx = new Fx.Styles(link, {'duration': 250, 'wait': false});
                link.addEvent('mouseover', function() {
                        overfx.stop();
                        overfx.start({
                                'background-color': 'de7047',
                                'color': 'fff'
                        });
                });
                link.addEvent('mouseout', function() {
                        overfx.stop();
                        overfx.start({
                                'background-color': 'ffde8d',
                                'color': '333'
                        });
                });
        });
	
}

