/**
 * Application-wide Javascripts
 */
 
/**
 * Unobtrusive Javascript
 * - Keep the views clear of javascripts by 
 *   working on the DOM when ready
 */
$(document).ready(function() {

  // ImageBox Overlay
  $.ImageBox.init({
    border: 8,
    closeHTML: '<img src="/images/common/close.gif" style="margin-top: 1px;" />',
    loaderSRC: '/images/common/loading-big.gif'
  });

});