  var hideDelay = 500;    
  var hideTimer = null;  
  
 
  $('.personPopupTrigger').live('mouseover', function()  
  {  
      var productID = $(this).attr('rel');  
      
      var pos = $(this).offset();  
      var width = $(this).width();  
      $('#personPopupContainer').css({  
          left: (pos.left + width) + 'px',  
          top: pos.top - 5 + 'px'  
      });  
  

	$.post("../productinfo.php?product="+productID, function(data) {
			$('#personPopupContent').html(data);  
	  		$('#personPopupContainer').fadeIn();	

			});

  });  
  
  $('.personPopupTrigger').live('mouseout', function()  
  {  
         $('#personPopupContainer').css('display', 'none'); 
  });  
  
