﻿$(document).ready(function() {

    /* Show news details on hover */
    $("ul#news li a").toggle(
      function() {
          $(this).next("p.details").slideDown("fast");
      },
      function() {
          $(this).next("p.details").slideUp("fast");
      }
    );

});