$(document).ready(function() {
	// Information tooltip
	var current;

	$('img.info').hover(function(e) {
		current = $(this).attr('title');
		$(this).after('<div class="infowrapper"><div class="info" >'+current+'</div></div>');
		$('div.info').fadeIn("fast");
		clearTitle(this); // called outside to make sure it's not removed before stored 
	},
	function(e) {
		$('div.infowrapper').remove();
		$(this).attr({title: current});
	});

	function clearTitle(lol) { $(lol).attr({title: ''}); } // remove title to disable default tooltip
});
