function break_str (str, width, brk, cut)
{
if (str.length <= width || str.indexOf('
') > 0) return str;
brk = brk || '\n';
width = width || 75;
cut = cut || false;
var regex = '.{1,'+width+'}(\\s|$)' + (cut ?'|.{'+width+'}|.+' :'|\\S+?(\\s|$)');
return str.match(RegExp(regex, 'g')).join(brk);
}
function updateMmoves (id, text)
{
if ((pos.x + $(window).scrollLeft()) > $('#'+id).offset().left && (pos.x + $(window).scrollLeft()) < $('#'+id).offset().left + $('#'+id).width() && (pos.y + $(window).scrollTop()) > $('#'+id).offset().top && (pos.y + $(window).scrollTop()) < $('#'+id).offset().top + $('#'+id).height())
$("#mmoves").html('' + break_str(text, 50, '
') + '');
}
$(function (){
$('body').on('mousemove', 'img,a,td,span', function (e){
var x, y;
e.preventDefault();
if (!($(this).attr('alt')) || $(this).attr('alt') == '')
return;
$('body').append('