//Javascript
//function resize images
function resizeImg() {
var imageAll=document.getElementById("content").getElementsByTagName("img");
if (imageAll !=null)	{
	for (i=0; i<imageAll.length; i++) {
		imageAll[i].style.display="inline";
		if (imageAll[i].width>510) {
			imageAll[i].style.width="510px";
			imageAll[i].onclick=function(){window.open(this.src)};
			imageAll[i].style.cursor="pointer";
			imageAll[i].title="ZOOM IN";	
		}
	}
}
}

//function load ALL scripts
function loadus() {
	resizeImg();
}


//RUN
if (window.addEventListener)
window.addEventListener("load", loadus, false);
else if (window.attachEvent)
window.attachEvent("onload", loadus);
else
window.onload=loadus


