
window.addEvent('load',function(){
	Slimbox.scanPage();
	MenuEffect.Init();
});

var MenuEffect = {
	Init:function(){
		$$('#main_nav a').filter(function(el){
			el.origColor = el.getStyle('color');
			el.origFontSize = el.getStyle('font-size');
			el.FX = new Fx.Tween(el,{duration:'normal'});
			el.addEvent('mouseover',function(e){
				this.FX.cancel();
				this.FX.start('color', '#333', '#a7bfdd');
			});
			el.addEvent('mouseout',function(e){
				this.FX.cancel();
				var tmpColor  = this.getStyle('color')
				this.FX.start('color', tmpColor, this.origColor);
			});
		})
	}
}
