$(document).ready(function(){
	$("#panel-buttons li").append("<em></em>");
	$("#panel-buttons li").hover(function() {
	  $(this).find("em").animate({opacity: "show", left: "-75"}, "slow");
	  var hoverText = $(this).attr("title");
	  $(this).find("em").text(hoverText);
	}, function() {
	  $(this).find("em").animate({opacity: "hide", left: "-65"}, "fast");
	});
});

$(document).ready(function(){
	$("#developer-panel-buttons li").append("<em></em>");
	$("#developer-panel-buttons li").hover(function() {
	  $(this).find("em").animate({opacity: "show", left: "-75"}, "slow");
	  var hoverText = $(this).attr("title");
	  $(this).find("em").text(hoverText);
	}, function() {
	  $(this).find("em").animate({opacity: "hide", left: "-65"}, "fast");
	});
});



