function MoveimageZoom(event)
{
$("#ImageZoom").css("top",event.clientY);
$("#ImageZoom").css("left",event.clientX+10);
}

function imageZoom(event,image)
{
var zoom= "<img src='/"+image+"' width='300'>";
$("#ImageZoom").html(zoom);
$("#ImageZoom").css("display","block");
$("#ImageZoom").css("top",event.clientY);
$("#ImageZoom").css("left",(event.clientX+10));
;}

function hiddeimageZoom()
{

$("#ImageZoom").css("display","none");

;}