function init () 
{
	$("a.a_img").hover(
		function()
		{
			$(this).mousemove(function(e)
			{
				$(this).next('div').show();
$(this).next('div').css({
            top: (e.pageY + 15) + "px",
            left: (e.pageX + 15) + "px"
        });
			});

			
		}, 
		function () 
		{
			$(this).next('div').css({'display':'none'});
		}

	);

}
