$(document).ready(function(){
 
$(".rss-popup a").hover(function() {
$(this).next("em").stop(true, true).animate({opacity: "show", top: "-60"}, "slow");
}, function() {
$(this).next("em").animate({opacity: "hide", top: "-70"}, "fast");
});

$("ul#nav-reflection li.fb a").hover(function() {
	$(this).stop(true, true).animate({'background-position': '-5px -6px'}, "slow");
}, function() {
	$(this).stop(true, true).animate({'background-position': '-5px 6px'}, "slow");
});

$("ul#nav-reflection li.steam a").hover(function() {
	$(this).stop(true, true).animate({'background-position': '-50px -6px'}, "slow");
}, function() {
	$(this).stop(true, true).animate({'background-position': '-50px 6px'}, "slow");
});

$("ul#nav-reflection li.esl. a").hover(function() {
	$(this).stop(true, true).animate({'background-position': '-96px -6px'}, "slow");
}, function() {
	$(this).stop(true, true).animate({'background-position': '-96px 6px'}, "slow");
});

$("ul#nav-reflection li.yt a").hover(function() {
	$(this).stop(true, true).animate({'background-position': '-142px -6px'}, "slow");
}, function() {
	$(this).stop(true, true).animate({'background-position': '-142px 6px'}, "slow");
});
 
});
