var ztmr = 4;

function mZoom(obj,event)
{
	ztmr = 4;
	$('#imgZoom').attr('src',	obj.src);
	$('#imgZoom').css('left',	event.clientX+2);
	$('#imgZoom').css('top',	event.clientY+2);
	$('#imgZoom').css('z-index',2000);
	$('#imgZoom').css('display','block');
}

function _ztmr()
{
	if (ztmr == 0)
	{
		$('#imgZoom').css('display','none');
		ztmr = 4;
	}
	else
	{
		ztmr -= 1;
		window.setTimeout('_ztmr()',300);
	}
}

function mZoomOut()
{
	_ztmr();
}
