/*
 * (c) 2011 David Krause, Interaktive Gestaltung
 * http://www.interaktive-gestaltung.de
 */

function ContentController(model)
{
    var model = model;

    this.onThumbIndexLinkMouseenter = function (id)
    {
        model.setTemporaryActiveTitle(id + 1);
        model.setInfoText(id);
    }

    this.onThumbIndexLinkMouseleave = function (id)
    {
        model.setTemporaryActiveTitle(0);
        model.setInfoText(null);
    }

    this.onThumbIndexLinkClick = function (id)
    {
        model.changeNavi(undefined, undefined, id + 1);
    }

}

