/*
$(document).ready(function()
{
	$('.entryContent ul li a').hover(function(){
		var src = $(this).attr('title');
		
		if(src == '' || src == undefined || src == null)
			return;
		
		$(this).parent().append('<div class="tooltip"><img src="'+ src +'" alt="'+ src +'" /></div>');
	}, function(){
	
		$(this).parent().children('.tooltip').remove();
	
	});
});
*/

$(document).ready(function()
{
	$('.entryContent ul li a').hover(function(){
		var src = $(this).attr('title');
		
		if(src == '' || src == undefined || src == null)
			return;
		
		$(this).append('<span class="tooltip"><img src="'+ src +'" alt="'+ src +'" /></span>');
		$(this).attr('title', '');
		
	}, function(){
	
		$(this).attr('title', $(this).children('.tooltip').children('img').attr('src'));
		$(this).children('.tooltip').remove();
	
	});
});
