
	var maxWidth = 600;
	initManager.addInit(function(){

		var imgs = document.getElementsByTagName('img');
		maxWidth = Math.max(maxWidth,document.getElementById('content_body').offsetWidth-50);

		for(var i=0; i < imgs.length; i++)
		{
			if(imgs[i].className=='corner')
			{
				imgs[i].style.cursor="pointer";
				imgs[i].originalWidth=imgs[i].width;
				imgs[i].title = "Nagy méret";

				imgs[i].onclick=function(){

						if(this.width==maxWidth)
						{
							this.width = this.originalWidth;
							this.title = "Nagy méret";
							this.className="corner";
						}
						else
						{
							this.width = maxWidth;
							this.title = "Normál méret";
							this.className="big";
						}
					}
			}
		}
	});

