window.addEvent("domready", function(){
	topEl = $$('#top a');
	topEl.each(function(el){
		if(!el.hasClass('cat_act')){
			el.set('tween', {duration: 'long'});
			el.addEvents({
				"mouseenter": function() {
					this.set('tween', {duration: 0});
					this.tween('color', '#006763');
				},
				"mouseleave": function() {
					this.set('tween', {duration: 500});
					this.tween('color', '#ffffff');
				}
			});
		}
	});
	toolEl = $$('#tool a');
	toolEl.each(function(el){
		if(!el.hasClass('cat_act')){
			el.set('tween', {duration: 'long'});
			el.addEvents({
				"mouseenter": function() {
					this.set('tween', {duration: 0});
					this.tween('color', '#000000');
				},
				"mouseleave": function() {
					this.set('tween', {duration: 500});
					this.tween('color', '#006763');
				}
			});
		}
	});
});