/* StartUp */
var StartUp = Class.create(); StartUp.prototype =
{
	initialize: function(runnable)
	{
	  Event.observe(document, 'dom:loaded', runnable.run.bindAsEventListener(runnable));
	}
}

