function Controller(_model)
{
	var model;
	model = _model;
	
	this.clickHandler = function(_index)
	{
		model.setClickIndex(_index)	
	}
}
