/* swap image on special sections */
$(function() {
  $("#uofltoday-special img").hover(
    function () {
      $(this).attr("src", $(this).attr("src").replace(/.png/, "-over.png"));
    },
    function () {
      $(this).attr("src", $(this).attr("src").replace(/-over.png/, ".png"));
    }
  );
});