$(document).ready(function(){
		
	$(".rss-popup a").hover(function() {
		
		$(this).next(".test").stop(true, true).animate({opacity: "show", top: "-40"}, "slow");
		
		}, function() {
			
		$(this).next(".test").animate({opacity: "hide", top: "-70"}, "fast");
		
	});
	
	
	$(".cont").click(function() {
		
		$("#contact").toggle("slow");
		
	});
	
	
});