/* Links.js */

window.addEvent('domready', function() {
 	
 	$$('.link').addEvent('mouseover', function() {
 		this.effect = new Fx.Styles(this, {wait: false, duration: 400, transition: Fx.Transitions.linear});
 		this.effect.start({
 			'backgroundColor': ['41ad3d', 'fab91b'],
 			'color': ['624a99', 'fff'],
 			'padding': ['2px 2px 2px 2px', '2px 2px 2px 12px']
 		});
 	});
 	
 	$$('.link').addEvent('mouseout', function() {
		this.effect.start({
			'color': ['fff', '624a99'],
			'backgroundColor': ['ffde59', 'fab91b'],
			'padding': ['2px 2px 2px 12px', '2px 2px 2px 2px']
		});
 	});

});

