
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("menu");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="DIV") {
node.onmouseover=function() {
this.className+=" over";
this.stop();
  }
  node.onmouseout=function() {
	  
  this.className=this.className.replace(" over", "")
  this.reset();
   }
   }
  }
 }
}

window.onload=startList;


function dosubmit(imageform)
{
  selectedimage = new Image();
  selectedimage.src = document.getElementById("imageurl").value;
  document.getElementById("imageheight").value = selectedimage.height;
  document.getElementById("imagewidth").value = selectedimage.width;
  if (document.getElementById("imageurl").value == "http://www.imagecorp.com.au")
    alert("Please enter the URL of an image you wish to edit.")
  else
    imageform.submit();
}
