/* -------------------------------------------------------------
	Copyright 2008 ISI Technology
	
	site.js - Site Class
------------------------------------------------------------- */

<!--

    /// <summary>
    /// Inherits from ISI Class.  Initiated as www in the head of the document
    /// </summary>
     Site = Class.create(ISI, {
    
        initialize: function($super)
        {             
            $super();
        },    
       
        init_defaults: function($super)
        {        
            $super();               
        },
       
        load_Libraries: function($super)
        {        
            $super();          
        },
        
        load: function($super)
        {
            $super();
            //this.init_GoogleAnalytics();
        }
        
    });

-->