В общем разбирайтесь с аргументом вторым, а функцию хотя бы так перепишите:
function simple_tooltip(target_items){
$(target_items).each(function(i){
$('<div class="parking" id="squidhead'+(i+1)+'"><p>'+this.title+'</p></div>')
.appendTo('body')
.mouseover(function(){
$(this).css({opacity:1, display:"none"}).fadeIn(10);
})
.mousemove(function(kmouse){
$(this).css({left:kmouse.pageX+15, top:kmouse.pageY+0});
})
.mouseout(function(){
$(this).fadeOut(10);
});
$(this).removeAttr('title')
});
}