// @author Joakim Ling

jQuery(document).ready(function() {

	jQuery('A.post_image_link IMG').mouseover(function () {
		var title = jQuery(this).attr('alt');
		title = title.replace(/Post image for /, '');
		
		jQuery(this).parent().append('<div class="imgTitle">'+title+'</div>');
		
	}).mouseout(function () {
		jQuery('div.imgTitle').remove();
	});
	
	jQuery('A.post_image_link IMG').mousemove(function (e) {
		jQuery('div.imgTitle').css('left', (e.pageX-30) + 'px');
		jQuery('div.imgTitle').css('top', (e.pageY-40) + 'px');
	});

});

