/////////////////////////////////
//// Shortcut Component Object
/////////////////////////////////

function ShortcutsComponent() {
    // Private Attributes.
    
    this.s = new Array();
    
    // Public Attributes.

    // Private Methods.

    // Public Methods.
    this.init = ShortcutsComponent_init;
} 

function ShortcutsComponent_init() {
}