// Prepare for the dynamic animations
window.addEvent('domready', function() {
   
	//*** replace main link onfocus with an animated one
	var idMainMenuLinks = $('idMainMenu').getElements('a:not(.clsLiactive)');
	
	idMainMenuLinks.setStyle('background-color', '#8FA250'); // disable the css :hover pseudo class
	idMainMenuLinks.addEvent('mouseover', function() {
		if (this.getStyle('background-image') == 'none') { 
			this.tween('background-color', '#B66A00');
			}
		});
	idMainMenuLinks.addEvent('mouseout', function() {
		if (this.getStyle('background-image') == 'none') { 
			this.tween('background-color', '#8FA250');
			}
		});
});

