

$(function() {
		// set opacity to null on page load
		$("ul#menu span").css("opacity","0");
		// on mouse over
		$("ul#menu span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 'slow');
			
		},
		// on mouse out
		function () {
			// animate opacity to null
			$(this).stop().animate({
				opacity: 0
			}, 'slow');
		});
	});

	
$(function() {
		// set opacity to null on page load
		$("ul#button_up span").css("opacity","0");
		// on mouse over
		$("ul#button_up span").hover(function () {
			// animate opacity to full
			$(this).stop().animate({
				opacity: 1
			}, 'normal');
			
		},
		// on mouse out
		function () {
			// animate opacity to null
			$(this).stop().animate({
				opacity: 0
			}, 'normal');
		});
	});	

