/**
 * init.js
 *
 * COPYRIGHT: All  title   and  proprietary  rights,  including  trade
 * secrets,   in   the   Software   and   any   copies thereof and the
 * accompanying  written   materials,   are  owned  by   schukai  GmbH
 * and  are  protected  by  German  copyright  laws,  other applicable
 * copyright   laws  and  international  treaty  provisions.
 *
 * @package    alvine
 * @author     schukai GmbH <info@schukai.de>
 * @copyright  Copyright (C) 2002, 2003, 2004, 2005, 2006 schukai GmbH
 * @license    http://www.alvine.de/license/
 * @version    20061114
 * @link       http://www.alvine.de/
 */


if(typeof alvine == 'undefined') alvine = new Object();
if(typeof alvine.js == 'undefined') alvine.js = new Object();
if(typeof alvine.js.plugin == 'undefined') alvine.js.plugin = new Object();


//alvine.js.plugin

alvine.js.init = function() {
  for(key in alvine.js.plugin) {
    obj = alvine.js.plugin[key];
    if(!obj) continue;
    if(typeof obj['init']!='function') continue;
    obj['init']();
  };  
}

$(document).ready(function() {
  alvine.js.init();
});

  
  
