/**
 * Application-wide Javascripts
 */
 
/**
 * Unobtrusive Javascript
 * - Keep the views clear of javascripts by 
 *   working on the DOM when ready
 */
$(document).ready(function() {
  
  if ($("a[rel^='prettyPhoto']").length) {
    $("a[rel^='prettyPhoto']").prettyPhoto({
      opacity: 0.45,
      showTitle: false,
      theme: "light_rounded"
    });
  }
  
});