$(document).ready( function() {
	$('.pods div').hover( function() { $(this).find('span').stop(true, true).fadeIn('fast'); }, function() { $(this).find('span').stop(true, true).fadeOut('fast'); } );
	$('.pods div').click( function() { window.location = $(this).find('a').attr('href'); })
});
