body{word-break:break-all}
table{table-layout:fixed;word-break:break-all}
.post img1{
	wheel:expression(
		this.onmousewheel=function()
		{	var o=this;	
			var zoom=parseInt(o.style.zoom,10)||100;
			zoom+=event.wheelDelta/12;
			if (zoom>0) o.style.zoom=zoom+'%';return false;
		}
	);
	wheelout:expression(
		this.onclick=function()
		{
			var o=this;
			o.style.zoom='100%';
			return true;
		}
	)
}