function init(){	setInterval('kenBurns()', 20);	Element.hide('dashboard');	setTimeout('Effect.toggle("dashboard", "appear")', 2000);}function tableRows() { if (document.getElementsByTagName) {  var tables = document.getElementsByTagName('table');  for (var i = 0; i < tables.length; i++) {   var trs = tables[i].getElementsByTagName('tr');   trs[0].style.backgroundImage='url(pict/menubar.png)';   for (var j = 2; j < trs.length; j+=2) {    trs[j].className = 'alternate';   }  } }}Event.observe(window, 'load', tableRows, false);function viewImage(url,x,y) { 	window.open(url, 'open_window', 'menubar=yes, toolbar=no, location=no, directories=no, status=no, scrollbars=yes, resizable=yes, left=50, top=50'); } function fileTrayHighlighter() {  if (!document.getElementsByTagName) return false;  var lists = document.getElementsByTagName("div");  for (var i=0; i < lists.length; i++) {    if (lists[i].className.match("filetray1")){            	lists[i].onmouseover = function() {    		    this.style.backgroundColor = "#FFFEC4";	  	}		lists[i].onmouseout = function() {	  		this.style.backgroundColor = "#ffffff";		}    }else if (lists[i].className.match("filetray2")){            	lists[i].onmouseover = function() {        		this.style.backgroundColor = "#FFFEC4";	  	}		lists[i].onmouseout = function() {	  		this.style.backgroundColor = "#edf3fe";		}    } }}Event.observe(window, 'load', fileTrayHighlighter, false);