for(i=1;i<elements.length;i++){
                    document.write('<tr style="height:75px;">');
                    document.write('<td style="width:82px;vertical-align:top;">');
                    document.write('<div id="div_chgs'+i+'" style="">');
                    document.write('<a href="http://www.chtogde-saratov.ru/rubrica/'+elements[i][0]+'/id/'+elements[i][6]+'.html"><img id="img_chgs'+i+'" width="70px" src="http://www.chtogde-saratov.ru/images/size/130x130/img/'+elements[i][1]+'" style="border:0;vertical-align:top;" onmouseover="size_big(this.src,\''+i+'\');" onmouseout="size_normal(this.src,\''+i+'\');"></a>');
                    document.write('</div></td>');
                    document.write('<td style="font-size:10px;vertical-align:top;">');
                    document.write(elements[i][3]);
                    document.write('<br><b><font size="2" style="color:red;">'+elements[i][2]+'</font></b>');
                    document.write('</td>');
                    document.write('</tr>');
          }
          function size_big(img, id){
                    var item = document.getElementById('div_chgs'+id).style.position = 'absolute';
                    this.timer = setTimeout("up("+id+")",25);
          }
          function up(id){
                    var item = document.getElementById('img_chgs'+id);
                    var itemWidth = item.width;
                    item.width=(itemWidth+5);
                    if(item.width < 130){
                              this.timer = setTimeout("up("+id+")",25);
                    }
          }
          function size_normal(img, id){
                    document.getElementById('div_chgs'+id).style.position = '';
                    document.getElementById('img_chgs'+id).width = '70';
                    clearTimeout(this.timer);
          }