/**
 * Core common JS for liveobjects/ui
 * Load this whenever you're using UI stuff
 *
 * @author Nick Nettleton / nick@plumdigitalmedia.com
 * @copyright 2005
 * @package UI
 * @version 3.0
 */
	var _q = [] ;

	/**
	 * Queues functions to happen on load
	 */
	function queue(f)
	{
		_q[_q.length] = f ;
	}

	/**
	 * Runs the onload queue
	 */
	function init()
	{
		for(var i=0, l=_q.length; i<l; i++){
			_q[i]() ;
		}
	}
