
	/**
	* Функция уменьшает большие картинки в постах
	*/
	
	function resizeImages() {
		
		/**
		* Максимально допустимая ширина картинки
		*/
		
		var maxwidth = 550;
		
		var images = document.getElementsByTagName("img");
		
		for ( var i = 0; i < images.length; i++ ) {
			if ( maxwidth < images[i].width	) {
				var newHeight = images[i].height * maxwidth / images[i].width;
				
				images[i].width = maxwidth;
				images[i].height = newHeight;
				
				images[i].style.width = maxwidth;
				images[i].style.height = newHeight;
		
				/*var tagBefore = document.createElement('<a href="#" class="highslide" onClick="this.expand">');
				var tagAfter  = document.createElement('</a>');
				images[i].insertBefore(tagBefore);
				images[i].insertAfter(tagAfter);
				*/
			}
		}
		
	}