$(document).ready(function () {
  
  $('img[@rel=viewimg]').ready(function () {
  	  
	  $('img[@rel=viewimg]').each(function () {
	    
	    var tmp = this;
	    var oldSRC = new String (this.src);
		
		index_ = oldSRC.lastIndexOf('cachedimg:') + 10; 
		
	    var newSRC = oldSRC.substr(0, index_);
	    
	    
	    var A = $('<a rel="lyteshow[clanek]" href="'+newSRC+'800:600"></a>');
			
	    $(this).after(A);
	
		A.append($(this));
	
	  });
  
  });
  
});
