$("document").ready(function(){
  $(".shownext").mouseover(function(e){
    x = e.pageX+10;
    y = e.pageY+22;
    next = $(this).next()
    next.css("display","block")
    next.css("top",y)
    next.css("left",x)
  }).mouseout(function(e){
      $(this).next().css("display","none")
    }
  )
})
