var CONTROLLER = 'Ameringer';
  
$(document).ready(
  function()
  {
    Controller.prototype.pageInit = function()
    {
      $.getJSON(SLIDE_DATA, function(data, status)
      {
        if (data.length > 1)
        {
          $('#heroImage').slideshow(
          {
            type: 'auto',
            slides: data,
            labels: {
                     title:$('span.text_title_1'),
                     subtitle:$('span.text_subtitle_1'),
                     date:$('span.text_date_1')
                    }
          });
        }
      });
    };

    window[CONTROLLER] = new Controller();
    window[CONTROLLER].init();
  }
);
