function load_fx () {
  $('.toggler').click(function() {
    $($(this).attr('href')).toggle();
    $($(this).attr('rel')).toggle();
  });
  
  $('a img').each(function(index) {
    $(this).parent('a').addClass('img');
  });
  
  $('a.confirm').each(function(index) {
    $(this).click(function() {
      return confirm($(this).attr('rel'));
    });
  });
  
  // ensure that a human being is present when typing in a story
  $('#story').click(function() {
    $('input#manual-chk').val(Math.random()*10);
    console.log($('input#manual-chk').val());
  });
  
  $('form').validate();
  
  $('.tip').tipTip({
    delay:100
  });
}

$(document).ready(function() {
  load_fx();
});
