// JavaScript Document
function addEffect()
{
	var links = $('moo').getElements('a');
	
	for(var i=0; i<links.length; i++)
	{
		
		links[i].addEvent('mouseover', function(){ 
			this.effect('color', { 'duration': 100 }).start('004d93', '004d93');
			this.effect('font-size', { 'duration': 100 }).start('12', '20');
			this.effect('font-weight', { 'duration': 100 }).start('normal', 'bold');
		});
																																					  		links[i].addEvent('mouseout', function(){ 
			this.effect('color', { 'duration': 100 }).start('004d93', '004d93');
			this.effect('font-size', { 'duration': 100 }).start('20', '12');
			this.effect('font-weight', { 'duration': 100 }).start('bold', 'normal');
		});																																			
	}
}

window.addEvent('load', addEffect);