$(document).ready(function(){
  $("#topnav li").each(function(){
    if($(this).parent().attr('id')=="topnav"){
      $(this).children('ul')
        .mouseover(function(){
          $(this).show();
        })
        .mouseout(function(){
          $(this).hide();
        })
        .hide();
      $(this).children('a')
        .mouseover(function(){
          id = $(this).parent().attr('id').split('nav_').join('');
          $(this).children('img').attr('src','http://www.kid.org/images/top_nav/'+id+'_hover.gif');
          $(this).parent().children('ul').show();
        })
        .mouseout(function(){
          id = $(this).parent().attr('id').split('nav_').join('');
          $(this).children('img').attr('src','http://www.kid.org/images/top_nav/'+id+'.gif');
          $(this).parent().children('ul').hide();
        });
    }
  });
});