$(function() {
		$("ul#menue a").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				color: 'white'
			}, "slow");
		},
		// on mouse out
		function () {
			// animate opacity to nill
			$(this).stop().animate({
				color: 'silver'
			}, "slow");
		});
	});

