$(function(){
	$('#plans a').hover(function(e){
		var texti = $(this).attr('id');						
		$('<img src="plans/thumbs/' + texti + '.jpg" id="image" alt="loading...">')
		.css('top',e.pageY + 10)
		.css('left',e.pageX + 20)
		.appendTo('body');
		
	},function(){
		$('#image').remove();
	});
	$('#plans a').mousemove(function(e){
		$('#image').css('top',e.pageY + 10).css('left',e.pageX + 20);
	});
});