/* 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': ['828282', 'e2e419'],
 			'color': ['fff', '000'],
 			'padding': ['2px 2px 2px 2px', '2px 2px 2px 12px']
 		});
 	});
 	
 	$$('.link').addEvent('mouseout', function() {
		this.effect.start({
			'color': ['000', 'fff'],
			'backgroundColor': ['e2e419', '000000'],
			'padding': ['2px 2px 2px 12px', '2px 2px 2px 2px']
		});
 	});

});


