$(function() {
	// set opacity to null on page load  
	$("#location-finder-link a span").css("opacity","0"); 
	 
	$("#location-finder-link a span").hover(function () {
		// animate opacity to full
		$(this).stop().animate({
			opacity: 1 }, 500);
	},
	// on mouse out
	function () {
		// animate opacity to nill
		$(this).stop().animate({
			opacity: 0 }, 500);
	});	
}); 
