$(function(){
	// zen button hover
	$(".btn").hover(function(){
		$(this).find(".rss").stop().animate({opacity:0.4}, "fast") 
	}, function(){
		$(this).find(".rss").stop().animate({opacity:1}, "slow")
	});
});







