var snapWidget = function () {
jQuery(function() { 

  if (window.location.hostname == 'fresnofamous.com') {
    widget_url = '/sites/default/files/widget.js';
  } else {
    widget_url = 'http://snap.fresnofamous.com/galleries/widget.js';
  }

  jQuery.ajax({
    url: widget_url,
    dataType: 'json',
    success: function(data) {
      var gallery_items = [];
      var domain = 'http://snap.fresnofamous.com';

      for (var ga=0;ga<data.length;ga++) {
        image_url = domain + data[ga].gallery.first_photo.medium;
        link_url  = domain + '/galleries/' + data[ga].gallery.id;
        title = data[ga].gallery.name;
        gallery_items.push('<li><div class="image"><a href="' + link_url + '"><img src="' + image_url + ' alt=""></div><div class="title"><a href="' + link_url + '">' + title + '</a></div></li>');
      }

      gallery_list = gallery_items.join('');
      jQuery('#snap_widget ul').append(gallery_list).cycle();
    }

  });
});
}();

