/**
 * frontend.js
 *
 * @category  gymnasium köniz lerbermatt
 * @package   frontend
 * @author    nothing <info@nothing.ch>
 * @copyright 2008 nothing from outer space (http://www.nothing.ch)
 * @license   http://www.nothing.ch/licence nothing gpl licence
 * @version   SVN: $Id$
 */

/**
 * registers additional plugins for the frontend.
 *
 * @category  gymnasium köniz lerbermatt
 * @package   frontend
 * @author    pi <pi@nothing.ch>
 */
ray.onDOMReady( function() {
    ray.info( "frontend.js :: onDOMReady" );

    var base = "/frontend/js/plugins/";
    ray.runtime.addWidget({ name: "imagehover", selector: ".float_image", base: base, weight: 25 });
    ray.runtime.addWidget({ name: "imagezoom", selector: ".zoomed", base: base, weight: 25 });
    ray.runtime.addPlugin({ name: "converter", selector: ".convert", base: base, weight: 25 });
    ray.runtime.addPlugin({ name: "menu", selector: "body", base: base, weight: 25 });

});