/*
 * FLASH FICTION CONTROLLER - Javascript controller for the Flash Fiction site.
 */

/* Initialize the global FlashFiction namespace. */
window.FlashFiction = window.FlashFiction || {};

FlashFiction = (function() {
  /* Private members */
  
  /* Private methods */
  
  // What runs on document.ready
  function _init() {
    
    // Comment Form
    if($("#comments-form").length > 0) {
      $('#comments-form #comment-author').example("name");
      $('#comments-form #comment-email').example("email");
      $('#comments-form #comment-url').example("web address");
    }
  };
  $(document).ready(_init);
  
  /* Public methods */
  return {}
  
})();