// JavaScript Document
$(function() {
	var	Height = 0;
	$("tr").mousemove(function(e){	
		$(this).find(".nhFoto")
			.css("top",(e.pageY-158) + "px")
			.css("left",(e.pageX -103) + "px")					
	});
	
	$("tr").mouseenter(function(e){
	   $(this)
	   		.css("cursor","pointer")
		var offset = $(this).offset();
		var	marginY = 80;
		$(this).find(".nhFoto").show();					
	});
	
    $("tr").mouseleave(function(e){   	
								 
		$(this).find(".nhFoto").hide();
	});	
	

	
});
