/* -------------------------------------------------------------
	Copyright 2008 ISI
	
	ISI.js - Base Class
------------------------------------------------------------- */

<!--
    
    /// <summary>
    /// Inherits from Core Class.
    /// </summary>
    ISI = Class.create(Core, {
    
        initialize: function($super)
        {
        
            $super();
                    
            Object.namespace("ISI.Components");
            Object.namespace("ISI.Common");
            
        },
        
//        init_Images: function($super)
//        {    
//            $super(arguments);
//            this.Images.invoke_PNGFix();
//        },

        load: function($super)
        {
            $super();
            this.load_Images("Hovers");
//            this.load_Scriptaculous("Effects");
        }
            
//        /// <summary>
//        /// Adds ClickTracks to the document
//        /// </summary>
//        init_ClickTracks: function()
//        {        
//            this.Events.PageEnd.add(this.load_ClickTracks, "ClickTracks", true);        
//        },
//            
//        load_ClickTracks: function()
//        {
//        
//            document.write(
//          
//                '<s' + 'cript language=javascript src="'
//                    + document.location.protocol
//                    + '//' + 'webstats.seoinc.com'
//                    + '/cgi-bin/ctasp-server.cgi'
//                    + '?i=innovativestaffing'
//                    + '&fp=1'
//                    + '&c=' + escape(document.cookie)
//                    + '"></'
//                    + 'script>'
//  	                
//            );
//        
//        }
        
    });
    
-->