$(document).ready(function(){
	/*
	$("#body-left-navigation a").append("<em><span></span></em>");

	$("#body-left-navigation a").hover(function() {
		$(this).find("em").animate({opacity: "show", left: "45"}, "slow");
		var hoverText = $(this).attr("title");
		$(this).find("em span").text(hoverText);
		$(this).find('em').find('span').text('hello');
	}, function() {
		$(this).find("em").animate({opacity: "hide", left: "15"}, "fast");
	});
	*/
});
