$(function() {
		  $("ul#menu span").css("opacity","0");
		  $("ul#menu span").hover(function () {
			$(this).stop().animate({
				opacity: 1
			}, 'slow');
		  },
		  function () {
			$(this).stop().animate({
				opacity: 0
			}, 'slow');
		   });
	     });
	  
$(function() {
		  $("ul#gallery_menu span").css("opacity","0");
		  $("ul#gallery_menu span").hover(function () {
			$(this).stop().animate({
				opacity: 1
			}, 'slow');
		  },
		  function () {
			$(this).stop().animate({
				opacity: 0
			}, 'slow');
		   });
	     });
	     

