$(document).ready(function() {

$('#rss-info').hover(function() {
  $('#options').toggle('slow', function() {
    // Animation complete.
  });
});

});