$(document).ready( function() {
	jQuery(".linksTop a").simpletip({
		fixed: true,
		onBeforeShow: function() {
			var img = jQuery(this.getParent()[0]).children('img');
			this.update(img[0].alt);
		}
	});
});

