//------------------------------------------------------------------
//2010-11-25
function CreateZoomImage(imageID)
{
	sNotify.addToQueue("imageID: "+imageID);
	//shiftzoom.construct($('#'+imageID));
	var zoomImage=document.getElementById(imageID);
		shiftzoom.add(zoomImage);	
		//shiftzoom.set(zoomImage, {buttons:false, showcoords: true, overview:false});
		//shiftzoom.defaultOverview   = false;
	
	//shiftzoom.add( imageID, { fading: true, buttons: true} );
	//shiftzoom.set( imageID, ['buttons'|'overview'|'showcoords'|'relativecoords'|'pixelcoords'|'percentcoords'|'zoomin'|'zoomout'|'nozoom'], [true|false] );

}
