﻿$(document).ready(function()
{
  /* HOVERS */
$(".hover").hide();
  $(".hashover").hover(
    function() {
      var pos = $(this).position();
      $(this).next(".hover").css({ position: "absolute",
        marginLeft: 0, marginTop: 0,
        top: pos.top - 30, left:pos.left + 20 
      });    

      $(this).next(".hover").show();
    },
    function() {
      $(this).next(".hover").hide();
    }
  );
  
}); 
