function thumbView(e, img) {
	 	$("#test").show();
		$(e).mousemove(function(e){
      var pageCoords = "( " + e.pageX + ", " + e.pageY + " )";
      var clientCoords = "( " + e.clientX + ", " + e.clientY + " )";
      $("#$test:first").text("( e.pageX, e.pageY ) - " + pageCoords);
      $("#test:last").text("( e.clientX, e.clientY ) - " + clientCoords);
	 		$("#img").show();

      $("#img").css({ position:"absolute", left: e.clientX-230, top: e.clientY-150, border:"0px solid #007797" });
});

	$("#img img").attr({ 
		src:  img,
		title: "Thumb",
		alt: "Thumb"
   });
}

function thumbView2(e, img) {
	 	$("#test").show();
		$(e).mousemove(function(e){
      var pageCoords = "( " + e.pageX + ", " + e.pageY + " )";
      var clientCoords = "( " + e.clientX + ", " + e.clientY + " )";
      $("#$test:first").text("( e.pageX, e.pageY ) - " + pageCoords);
      $("#test:last").text("( e.clientX, e.clientY ) - " + clientCoords);
	 		$("#img").show();

      $("#img").css({ position:"absolute", left: e.clientX-160, top: e.clientY-150, border:"0px solid #007797" });
});

	$("#img img").attr({ 
		src:  img,
		title: "Thumb",
		alt: "Thumb"
   });
}

function thumbHide() {
   $("#img").hide();
}