/**
 * This javascript controls the UI
 * for the current page.
 *
 * $Id: lib.js 59 2007-06-27 15:19:05Z fhelly $
 *
 * Copyright 2006-2007 Francois Helly <fhelly@bebop-design.net>
 *
 * See the enclosed file COPYING for license information (GPL). If you did not
 * receive this file, see http://www.fsf.org/copyleft/gpl.html.
 */

/* Dependencies */
var load        = {
    core: ['prototype', 'cookie', 'popup'],
    dyn: ['toggler', 'chaser', 'rollovers'],
    navigation: ['menu']
};
/* The web path to the javascripts files to load */
var path        = '/resources/js/';
/* An array to store all the menu objects in */
var menus       = {};
/* The css theme used for this UI */
var theme       = 'ezrumeur';
var rpath       = '/';
var iconext     = 'gif';

if (typeof(bbLoader) != 'undefined') {
    for (var module in load) {
        bbLoader.load(load[module], module, path);
    }
}
