$(function() {

	$('#subContent img').tooltip({
	delay: 500,
	showURL: false,
	bodyHandler: function() {
		var imgClass = $($(this)).attr('class');
		return $('#'+imgClass).html();
	}
});

});