$(document).ready(function(){
	$("div.rssPopup").hide();

	$("a.addPageToFavourites").click(function(){
		addToFavorites();
		$("div.rssPopup").hide("slow");
		return false;
	});

	$("a.closeRssPopup").click(function(){
		$("div.rssPopup").hide("slow");
		return false;
	});

	$("a.rssLogo").click(function(){
		$("div.rssPopup").show("medium");
		return false;
	});

});