$(document).ready( function() {
	$(".pod").mouseenter(function(){
		$("p",this).stop(true, true).fadeIn('fast');
	}).mouseleave(function(){
		$("p",this).stop(true, true).fadeOut('fast');
	});
	
	$('.pod').click( function() {
		window.location = $('a',this).attr('href');
	})
} );
