function Model()
{
	var index;
	var THIS = this;
	
	this.setClickIndex = function(_index)
	{
		index = _index;
		jQuery(this).trigger(onChange);
	};
	
	this.getClickIndex = function()
	{
		return index;
	};
}
