Hey everybody, what you see is a list of members of our hiking club. It's 210 spans in one div, each span with a number representing one of our member. I would like to add an title (bubble) with a member name to each span as I hover over the span. So far I was able to use jquery to add a title with the same text (using attr() method). Is here anybody who can give me an advice how to add title with a name of the member corresponding to the number? My idea is to store the names in an array and than use innerHTML of hovered span to determine which item of that array should be in the title. Since innerHTML is a number I think it should be somehow possible. Why didn't I add titles directly to all those span ask you? It's because there is 23 divs each with 210 spans because we have 23 seasons (years) as you can see in the list on left hand side. Any advice will be highly appreciate.