Dude,
you're cool 
First of all, change the code in line 146 from this:
HTML Code:
<table clss="demogrid" width="400" border="0" cellspacing="40">
to this:
HTML Code:
<table class="demogrid" width="400" border="0" cellspacing="40">
Notice the missing "a" in the word class?
How did that suddenly happen??
Then, copy and paste this script directly before the closing body tag of your page (not half way up).
Code JavaScript:
<script>
jQuery(document).ready(function() {
jQuery(".demogrid td a").click(function(){
var caption = (jQuery(this).nextAll('.demosmall').html().split('<br>'));
var part1 = caption[0];
var part2 = caption[1];
jQuery("#playertitle").html('<span class="font2">' + part1 + '</span><br /><br /><span class="playersubtitle">' + part2);
});
});
</script>
Then it should work as expected.
Bookmarks