// JavaScript Document

/* Perform these functions once the page is finished loading */
$(function() {

	$(".rssFeed a").bind("mouseover", function() {
		$(".rssFeed span").css("display", "none");
		$(this).find("span").css("display", "inline");
	});

	$(".rssFeed a").bind("mouseout", function() {
		$(".rssFeed span").css("display", "none");
	});

});