Check out the articles section. Some of your code could be better.
Eg.
Code:
$query = "SELECT title, sid, summary, username, rid, unix_timestamp.......
Should be more like this
PHP Code:
$query = $vbulletin->db->query_read("SELECT................");
while($story = mysql_fetch_array($results)) {
More like
while ($story = $vbulletin->db->fetch_array($results)) {
Things like that