$(document).ready(function() {
  
  $('#nav div.active').find("img").fadeOut('slow');
  
  $('#nav div').hover(
    function () {
      $(this).find("ul").css('display','block');
      $(this).find("img").fadeOut('fast');
    }, 
    function () {
      if ($(this).hasClass("active")) {
      
      } else {
        $(this).find("ul").css('display','none');
        $(this).find("img").fadeIn('fast');
      }
    }
  );

  var str = $('#footer_nav').html();
  var new_str = str.substr(0,str.length-5);
  
  $('#footer_nav').html(new_str);
});
