/* --------------------------------------------------------------------------------------------------*/
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.src = this.src+ '.big.jpg';
Zoom(this.src.replace("100x100","zoom"));
// Zoom(this.src + '.big.jpg');
               //image.onload= function () {  Zoom(this.src); }; 
	           };
    	   imgs[i].style.cursor = "hand";
	       continue ;
	       }
	    }
}


