No, it shouldn't affect your bandwidth that much.
Themes/default/MessageIndex.template.php
If you want it to show up as soon as the mouseover that entire table cell:
Find
<td class="subject ', $alternate_class, '">
Replace
<td class="subject ', $alternate_class, '" title="', $topic['first_post']['preview'], '">
Or, to just have it show up when they hover over the subject:
Find
', $topic['is_sticky'] ? '<strong>' : '', '<span id="msg_' . $topic['first_post']['id'] . '">', $topic['first_post']['link'], (!$context['can_approve_posts'] && !$topic['approved'] ? ' <em>(' . $txt['awaiting_approval'] . ')</em>' : ''), '</span>', $topic['is_sticky'] ? '</strong>' : '';
Replace
', $topic['is_sticky'] ? '<strong>' : '', '<span id="msg_' . $topic['first_post']['id'] . '" title="' . $topic['first_post']['preview'] . '">', $topic['first_post']['link'], (!$context['can_approve_posts'] && !$topic['approved'] ? ' <em>(' . $txt['awaiting_approval'] . ')</em>' : ''), '</span>', $topic['is_sticky'] ? '</strong>' : '';