dankreiner,
The problem is most likely due to a conflict between two javascript frameworks: jQuery and mootools. I use mootools, and it appears as though tinychat, which you have installed on your board, uses jQuery.
Code:
<script type="text/javascript" src="http://www.phantank.com/jquery.min.js"></script>
<script type="text/javascript" src="http://www.phantank.com/tinychat.js"></script>
The problem arises because both jQuery and mootools use the name "$" as a global reference to the jQuery and document.id objects respectively. To fix the problem do the following:
Open the file vbstatus_javascript.js
Find every instance of "$(" and replace it with "document.id("
Check to see if this fixes your problem.
~Tim