/**
 * Frontend Javascript
 */
 
/**
 * Unobtrusive Javascript
 * - Keep the views clear of javascripts by 
 *   working on the DOM when ready
 */
$(document).ready(function() {

  // FadeIn featured image
  $('.featured img').fadeIn(1000);

});
