// JavaScript Document
function changeImage(idtag) 
{
	
					  var j,d="",l="",m="",p="",q="",z=""
					  list = new Array("images/indeximages/mainmenuimage_1.jpg","images/indeximages/mainmenuimage_2.jpg","images/indeximages/mainmenuimage_3.jpg","images/indeximages/mainmenuimage_4.jpg","images/indeximages/mainmenuimage_5.jpg")
					  j=parseInt(Math.random()*list.length);
					  j=(isNaN(j))?0:j;
	
					document.getElementById(idtag).style.backgroundImage = "url("+list[j]+")"; //inserts image into background
					document.getElementById(idtag).style.backgroundRepeat = "no-repeat";
					document.getElementById(idtag).style.backgroundPosition = "100% 100%";

}

function writemenutable() 
{
document.write('<table width="100%"  border="0" cellspacing="0" cellpadding="0" class="primary_box" id="Main_menu" summary="" style="background-image:url(images/indeximages/mainmenuimage_1.jpg)"><tr><td width="2%" align="left" valign="top" bgcolor="#B30000" class="cornertopleft"><img src="images/corners/red-tl.gif" alt=" " class="cornertopleft"></td> <td bgcolor="#B30000" colspan="2"><h1>IT Resources - Solutions and Services </h1></td> <td width="2%" align="right" valign="top" bgcolor="#B30000" class="cornertopright"><img src="images/corners/red-tr.gif" alt=" " class="cornertopright"></td> </tr> <tr> <td class="box_padding"></td> <td width="49%" valign="top" class="box_padding"><img src="images/template/trans.gif" width="280" height="2"><ul><li class="SpacedListItem"><strong><a href="services/core/index.html">Core Services </a><br></strong>Networks, Backups, Data Centre...</li><li class="SpacedListItem"><strong><a href="systems/index.html">Corporate Systems Support</a><br></strong>Finance, Student Systems, HR...</li><li class="SpacedListItem"><a href="communications/index.html"><strong>Communications</strong></a><br>Internet, Phones, Email, Video... </li><li class="SpacedListItem"><a href="services/HPC/index.html"><strong>High Performance Computing </strong></a><br>Consulting, lease...</li><li class="SpacedListItem"><a href="services/app_dev/index.html"><strong>Application Development</strong></a><br>Design, build, implementation...</li><li class="SpacedListItem"><a href="projects/index.html"><strong>ICT Project Management<br></strong></a>Vendor engagement, methodology...</li><li class="SpacedListItem"><a href="procserv/index.html"><strong><span class="SpacedListItem"><a href="procserv/index.html"><strong>Equipment Purchase and Lease</strong></a></span><br></strong></a>Hardware, software, printers...</li><li class="SpacedListItem"><a href="security/index.html"><strong>ICT Security</strong></a><br>Incident Management, Consulting....</li><li class="SpacedListItem"><a href="http://www.web-services.utas.edu.au/"><strong>Web Services</strong></a><br>Web policies and guidelines, FCMS...  </li></ul></td> <td width="47%" valign="top" class="box_padding" style="padding-top:10px; "></td> <td class="box_padding">&nbsp;</td> </tr> <tr> <td valign="bottom" align="left" class="cornerbottomleft"><img src="images/corners/pink-bl.gif" alt=" " class="cornerbottomleft"></td> <td colspan="2"></td> <td valign="bottom" align="right" class="cornerbottomright"><img src="images/corners/pink-br.gif" alt=" " width="10" height="10" class="cornerbottomright"></td> </tr> </table>');

}
