$(function(){
  // Flit
  $('.flit-link').click(function(){
    $(this).next().slideToggle();
    _src = $('img', this).attr('src');
    _src = (/_on/.test(_src)) ? _src.replace('_on', '_off') : _src.replace('_off', '_on');
    $('img', this).attr('src', _src);
    
    $('.flit-link').not(this).each(function(){
      $(this).next().slideUp();
      $('img', this).attr('src', $('img', this).attr('src').replace('_on', '_off'));
    })
  })
})

