$(function() {

	var p = $(".shortstorylisttext");
	$(".shortstorylisttext a").tooltip({ 
		track: false, 
		delay: 0, 
		showURL: false, 
		opacity: 1, 
		fixPNG: true, 
		showBody: " - ", 
		top: -15, 
		left: p.width(),
		bodyHandler: function() { 
		  var htmlStr = $(this).parent();
		  return htmlStr.find(".titlehint").html();
    		} 
	}); 


});