﻿function fixCellar() {
	$('cellar').style.width = '99.9%';
	$('cellar').style.width = '100%';
}

var OLM = Class.create();
OLM.prototype = {
	initialize: function() {

		// private members
		this.evals = [];


		// ctor

		Event.observe(window, 'load', this.execute.bind(this));

	},


	// public methods

	addEval: function(str) {
		this.evals.push(str);
	},

	execute: function() {
		for (var i = 0; i < this.evals.length; i++)
			eval(this.evals[i]);
	}

};


var __OnLoad = new OLM();
var Globals = function () {};
