$(document).ready(function(){

    setTimeout("initPopuper()", 2000);






});


function initPopuper()
{
   $('.news_big_item img').each(convert);
}

function convert(){
  if($(this).attr('rel') != 'gaz') {
  oldwidth = $(this).width();
  oldheight = $(this).height();
  title= $(this).attr('title');
  if(!title) title = "";
  $(this).removeAttr('width').removeAttr('height');
  if($(this).width() >= 400){
      $(this).attr('width',oldwidth).attr('height',oldheight)
              .wrap($("<a>")).parent()
              .attr('title',title)
              .attr('href',$(this).attr('src'))
              .lightBox({
                  overlayBgColor: '#fff',
                  overlayOpacity: 0.6,
                  imageLoading: '/jlight/images/loading.gif',
          	      imageBtnClose: '/jlight/images/close.gif'
                });
  } else {
    $(this).attr('width',oldwidth).attr('height',oldheight);
  }
  }
}
