It's because mysql_query() queries the last used database, so whenever you create $mySQL the selected database changes in $DB_site as well. I think...
Try redefining the DB_Sql_vb class to use
mysql_db_query() in the query() method instead of just mysql_query(). As the first parameter for mysql_db_query() use $this->dbname (or whatever the variable is).
Good luck.