Event.observe(window, 'load', function() {
	
  if ($$("#middle_column")[0]) {
	  
	  var element = $$("#middle_column");
	  var images = element[0].getElementsByTagName('img');
	  
	  for (var i=0;i<images.length;i++){
		  
		  if (images[i].className!="vrweb_img" 
			  && images[i].className!="" 
			  && images[i].className!="picture left alt"
			  && images[i].className!="picture right alt"
			  && images[i].className!="picture alt") {
			  
			      var image = $(images[i]);
			      
			      if (image.up('div').className != 'noalt' 
			    	  && image.up('div').className != 'inner_column') {
			    	  
			        var picture = '<div class="';
			        if(image.className) {
			          picture = picture + image.className;
			        }
			        picture = picture + '" style="display:block; width:' + image.width + 'px;"><img width="' + image.width + 'px" height="' + image.height + 'px" src="' + image.src + '" border="0" alt="' + image.alt + '"/><span style="width: ' + (image.width - 15) + 'px;">' + image.alt + '</span></div>';
			        picture.toString();

			        image.hide();
			        image.insert({after: picture});
			      }
		  }
	  }
  }
  
  if ($$("#content_normal")[0]) {
	  
	  var element = $$("#content_normal");
	  var images = element[0].getElementsByTagName('img');
	  
	  for (var i=0;i<images.length;i++){
		  
		  if (images[i].className!="vrweb_img" 
			  && images[i].className!="" 
			  && images[i].className!="picture left alt"
			  && images[i].className!="picture right alt"
			  && images[i].className!="picture alt") {
			  
			      var image = $(images[i]);
			      
			      if (image.up('div').className != 'noalt' 
			    	  && image.up('div').className != 'inner_column') {
			    	  
			        var picture = '<div class="';
			        if(image.className) {
			          picture = picture + image.className;
			        }
			        picture = picture + '" style="display:block; width:' + image.width + 'px;"><img width="' + image.width + 'px" height="' + image.height + 'px" src="' + image.src + '" border="0" alt="' + image.alt + '"/><span style="width: ' + (image.width - 15) + 'px;">' + image.alt + '</span></div>';
			        picture.toString();

			        image.hide();
			        image.insert({after: picture});
			      }
		  }
	  }
  }

});