$(document).ready(function(){

	$(".btns a").hover(
	function() {$(this).next("em").show();},
	function() {$(this).next("em").hide();});

//	$(".btns a").hover(
//	function(){$(this).next("em").animate({opacity: "show", top: "-90"}, "fast");},
//	function(){$(this).next("em").animate({opacity: "hide", top: "-100"}, "fast");});
	
});
