/**
 * @author thatcher
 */
//  -   BOOT THE APP  -
jQuery.noConflict();
(function($){
    
    //A static logger for any initialization routines we might add here
    var log = $.logger("RecordsOfExistence"),
		hash = '';
    
    //The environments are described in environments.js
    try{
		//use automap based on window.location
       	$.env();
       
 	}catch(e){
 	   log.error("Environmental selection is invalid!").exception(e);
 	}
    
    $(document).ready(function(){
        log.info("Initializing Application");
        $.boot(function(){
          //you can do additional initialization here
            log.info("Successfully Initialized Application");
			setInterval($.$('#siteController').go, 200);
        });
    });    
    
})(jQuery);  

