$(document).ready(function() {
	// Hide the hover elements
	$('span.hover').hide();
	// find the div.fade elements and hook the hover event
	$('a.link-to').hover(function() {
		// on hovering over find the element we want to fade *up*
		var fade = $(this).find('span.hover');
		// if the element is currently being animated (to fadeOut)...
		fade.fadeIn("fast");
	}, function() {
		var fade = $(this).find('span.hover');
		fade.hide();
	});
});
