/*
 * Project : IZI Shop
 * File : shop.js
 * Date : Fri Feb 20 13:54:11 CET 2009
 *
 * This JavaScript Class is part of the IZI Shop module and is the
 * used as Base Class.
 *
 * Changelog
 * [pieter] initial release
 *
 * @link      http://www.izi-services.nl
 * @author    Pieter Hensen (pieter at izi-services dot nl)
 * @copyright IZI-Services
 * @package   IZIFramework
 * @version   1.0
 */
var Shop = new Class({
  debug: false,

  initialize: function ()
  { 
    if ( this.bootstrap() ) {
      if(this.debug) console.log( 'Shop Base initialized..' );
    }
  },

  bootstrap: function ()
  {
    return true;
  }
});
