/* --------------------------------------------------------------------------------------------------*/
function articles_Zoom()
{

	var imgs = document.getElementsByTagName("img");
    for (i = 0; i < imgs.length; i++) 
        {
	    if (imgs[i].src != '' ) 
	       { 
	       imgs[i].onclick = function () { 

	           image = new Image();
               image.onerror= function () { return; }; 
               image.onload= function () {  Zoom(this.src); }; 
               image.src = this.src+ '.big';
	           };
    	   imgs[i].style.cursor = "hand";
	       continue ;
	       }
	    }
}



