// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

"#news a.read_more".on('click', function() {
  this.hide();
  var div = this.parent('li').select('div.more').first();
  div.slide('in', {direction: 'top'});
});