// Just a few other JavaScript bits

$(document).ready(function () {

	bound = 0;

	$("#rss").hover( 
		function(){
			$("#subscribe")
				.fadeIn();
		}, 
		function() {
			$("#subscribe").fadeOut();			
		}
	);

});