//<![CDATA[
/**
 * [2008-01-14]
 *
 * onLoad Function
 */
var onLoadFuncs = new Array();
function setOnLoadFunctions(func)/*{{{*/
{
    onLoadFuncs[onLoadFuncs.length] = func;
} // end of the 'setOnLoadFunctions()' function/*}}}*/
function onLoadFunction()/*{{{*/
{
    onLoadFuncs.each(function(f) {
        if (typeof f == 'function') {
            f();
            return;
        }
        else if (f.indexOf('(') == -1 || f.indexOf(')') == -1) {
            f += '()';
        } // end if

        eval(f+';');
    });
} // end of the 'onLoadFunction()' function/*}}}*/
window.onload = onLoadFunction;
//]]>