Reacting to your update:
I strongly think you should try with dojo.addOnLoad(). Together, the last two <script> sections of your <head> would become:
<script>
dojo.addOnLoad(function(){
dojo.require("dojox.data.CsvStore");
dojo.require("dijit.Tree");
dojo.require("dojo.parser"); /* you I don't think you really need this line ! */
var stateStore = new dojox.data.CsvStore({url: "states.csv", label: "name"});
});
</script>
The problem with your original code is that you cannot guarantee that the constructor function dojox.data.CsvStore has been read by the time you are about to create your stateStore instance of it. That's where dojo.addOnLoad() comes in, giving you a guarantee that the rest of the javascript was loaded prior to executing the abstract function passed as parameter of addOnLoad().
Because it's an issue of timing, your own original code may work sometimes, maybe not others: it would depend on the download speed and the order in which your browser pieces together the various javascript bits. That's why using dojo's remote library may occasionally give different results from using your own local copy of the dojo library.
That said, if you are using Firefox 3 (earlier than 3.0.6), then bear in mind what I said about the known bug. In that case, you may want to put that <script> block immediately before the closing </body> tag... (That option would work on other browsers as well.)
