$(document).ready(
  function()
  {
    $(".div_menu").hover(
      function()
      {
        if (!$(this).children(".pod_menu").length) return false;
        var offset = $(this).offset()
        $(this).children(".pod_menu").css({position: 'absolute'})
        $(this).children(".pod_menu").css({position: 'absolute', top:offset.top, left:$(this).width()-2}).show()
        //$(this).css({height: 30})
      },
      function()
      {
        $(this).children(".pod_menu").hide()
      }
    )
  }
)
