var obj;
function newBorders(block) {         
 $(block+" img").load(function() {  
 if ((!this.className || this.className !== 'floatImgLeft' || this.className !== 'floatImgRight') && !this.stopValue) {
  this.stopValue = true; 
  var addCss = '';
  if (this.className === 'floatImgLeft') addCss='float:left;'; 
  if (this.className === 'floatImgRight') addCss='float:right;';  
  $(this).wrap('<div style="'+addCss+'width:'+(this.width*1.124+8)+'px;height:'+(this.height*1.124+8)+'px;"></div>').before('<img src="http://skprok.tver.ru/img/shadow.png" alt="" style="z-index:-100;display:block;width:'+(this.width*1.124+8)+'px;height:'+(this.height*1.124+8)+'px;" />'); 
  this.style.position="relative";
  this.style.margin='0px';
  this.style.marginLeft=(this.height*0.025+4)+'px';
  this.style.marginTop=-(this.height*1.095+4)+'px';
  this.style.display="block";
 } 
 });                        
 
}    


