$(function () {

$('.top_menu div div').hover(

  function () {

    $(this).find('.drop').show()

  },

  function () {

    $(this).find('.drop').hide()

  }

);

})