Footers:
<script>
if($.browser.mozilla && location.href.match(/board,/i)){
$("td.windowbg span a[href*='topic,']").hover(function(){
if(this.href.match(/topic,(\d+)/i)){
var x = RegExp.$1;
this.id = "Why_" + x;
$.get(this.href,function(Info){
$("#Why_" + x).attr("title",$(Info).next().find("div.post").html());
});};},function(){});
};
</script>
This code is for FireFox Users only. Only reason is because It uses AJAX, which sometimes makes IE Freeze, and that would be one of those sometimes.
Anyway, this code alowes you to hover over a thread link and it will show you part of the very first post of that topic.
Sorry, but I will probably never be able to get this working in IE and any other Browser but IE.