var CONTROLLER = 'yowellarch';

$(document).ready(function()
{
  Controller.prototype.pageInit = function()
  {
    $('#content_sub_masonry').masonry();

    $.getJSON(SLIDE_DATA, function(data, status)
    {
      $('#ss_home_container').slideshow(
      {
        type: 'auto',
        slides: data
      });
    });
  }
  window[CONTROLLER] = new Controller();
  window[CONTROLLER].init();
});

