// JavaScript Document
//
// Animazione colore Menu.
//
$(document).ready(function() {
	$('.menu a').mouseenter(function() {
		$(this).stop().animate( { color: '#FFF' }, 0 );
	}).mouseleave(function(){
		$(this).stop().animate( { color: '#999' }, 500 );
	});
});
