﻿var SpotGrid = function (div) {
	this.div = $(div);
	this.init();
}

SpotGrid.prototype = {
	div: null,
	init: function () {
		var self = this;
		// show all hidden usercontrols (not part of the grid)
		$('.ucHide').show();

	}
};

var SpotGrid = new SpotGrid($('.spotgrid'));
