$(document).ready(function() {	
	$("#menubg > a").hover
		(function()
			{$(this).children("span").show("fast").animate({opacity:1, filter: "alpha(opacity = 100"}, 300); },
		function()
			{$(this).children("span").animate({opacity:0}, 300);
	});
});


$(document).ready(function() {
	$("#gal > a").hover
		(function()
			{$(this).children("span").show("fast").animate({opacity:1, filter: "alpha(opacity = 100"}, 300); },
		function()
			{$(this).children("span").animate({opacity:0}, 300);
	});
});


