startList = function() {if (document.all&&document.getElementById) {navRoot = document.getElementById("nav");for (i=0; i<navRoot.childNodes.length; i++) {node = navRoot.childNodes[i];if (node.nodeName=="LI") {node.onmouseover=function() {this.className+=" over";  }  node.onmouseout=function() {  this.className=this.className.replace(" over", "");   }   }  } }}window.onload=startList;multiFileUpload = function() {
	i=0;
	while ($('progress' + i) != null) {		$('progress' + i).style.display = "block";		$('file_delete' + i).disabled = true;		i++; 	}
	$('file_' + i).disabled = true;		$('uploadFiles').submit();	new Ajax.Request('uploadProgress.php', {		method: 'get', onSuccess: function(transport) {			console.log(transport.responseText);			var data = transport.responseText.evalJSON();						for(i=0;i<data.length();i++) {				$('percent' + i + 'Text').value = ' ' + data[i].percentUploaded + '% Uploaded';			}		} 	});
	return false;}
