// JavaScript Document
$(document).ready(function(){

	$("#characterswrap1 a").append("<em>test</em>");
	
	$("#characterswrap1 a").hover(function() {
		$(this).find("em").animate({opacity: "show", top: "-115"}, "slow");
		var hoverText = $(this).attr("title");
	    $(this).find("em").text(hoverText);
	}, function() {
		$(this).find("em").animate({opacity: "hide", top: "-125"}, "fast");
	});
	
	$("#characterswrap2 a").append("<em>test</em>");
	
	$("#characterswrap2 a").hover(function() {
		$(this).find("em").animate({opacity: "show", top: "-75"}, "slow");
		var hoverText = $(this).attr("title");
	    $(this).find("em").text(hoverText);
	}, function() {
		$(this).find("em").animate({opacity: "hide", top: "-85"}, "fast");
	});

	$("#characterswrap3 a").append("<em>test</em>");
	
	$("#characterswrap3 a").hover(function() {
		$(this).find("em").animate({opacity: "show", top: "-75"}, "slow");
		var hoverText = $(this).attr("title");
	    $(this).find("em").text(hoverText);
	}, function() {
		$(this).find("em").animate({opacity: "hide", top: "-85"}, "fast");
	});


});