<!--

// Import all of the files needed to run our menu system.
// Script file path:
var scriptPath = "http:\/\/framework.communitycollege.org\/js\/";
var strFile;
var scripts = new Array();
scripts = ["allPageScripts.js", "\/ccfMenuSystem\/ccfMenuSystem.js", "\/ccfMenuSystem\/popMenu.js",
            "GrowCode.js", "\/ccfMenuSystem\/dockMenu.js", "browserDetect.js"];

for(var x=0; x < scripts.length; x++)
{
   // Format filename
   strFile = scriptPath + scripts[x];
   document.write(
   '<script type="text/javascript" src="' + strFile + '"><\/script>');
}

// -->