After reviewing the JavaScript sourcecode for Dijit, I thought it was likely the error results from an "insecure" refrence to a dynamically generatded IFRAME. Note there are two versions of the script file, the uncompressed represents the original source (dijit.js.uncompressed.js) and the standard (dijit.js) has been compressed for optimal transfer time. 

Since the uncompressed version is the most readable, I will describe my solution based on that. At line #1023, an IFRAME is rendered in JavaScript:

    if(dojo.isIE){
        var html="<iframe src='javascript:\"\"'"
               + " style='position: absolute; left: 0px; top: 0px;"
               + "z-index: -1; filter:Alpha(Opacity=\"0\");'>";
        iframe = dojo.doc.createElement(html);
    }else{...

What's the problem? The src for the IFRAME is "insecure" - so I replaced it with the following:

    if(dojo.isIE){
        var html="<iframe src='javascript:void(0);'"
               + " style='position: absolute; left: 0px; top: 0px;"
               + "z-index: -1; filter:Alpha(Opacity=\"0\");'>";
        iframe = dojo.doc.createElement(html);
    }else{...

This is the most common problem with JavaScript toolkits and SSL in IE. Since IFRAME's are used as shims due to poor overlay support for DIV's, this problem is extremely prevalent. 

My first 5-10 page reloads are fine, but then the security error starts popping up again. How is this possible? The same page is "secure" for 5 reloads and then it is selected by IE as "insecure" when loaded the 6th time.

Now that my page is static and the only thing it does is load the Dojo and Dijit JavaScript files, I'm really not sure what else could be wrong. Help!