/*
 * JavaScript interface to the SB network.
 * class SB.events - event dispatcher
 *
 * Requirements: jQuery library 1.4.2 and above
 * Copyright (C) 2010 Tomas Hnilica.   All Rights Reserved.
 */
 

SB.events = function() {
}

SB.events.prototype.signal = function(event) {
  alert('an event ' + event + ' occured.');
  SBprofile.addActivityControls();
};

