 /*///////////////////////////////////////*//*///////   Rollover Scripts   ///////////*/var Hots, swapsrc, swapimg// swap infunction rin(which){	swapimg = document.images[which]	swapsrc = swapimg.src	swapimg.src = Hots[which].src}// swap outfunction sout(){	swapimg.src = swapsrc}  function Initialize(){  var HotList = [["menu01", "menu/cutaway_over.gif"],["menu02", "menu/photo_over.gif"],["menu03", "menu/vector_over.gif"],["menu04", "menu/other_over.gif"],["menu05", "menu/case_over.gif"],["menu06", "menu/about_over.gif"]]  Hots = new Object()    for (i = 0; i < HotList.length; i++)  {    img = new Image();    img.src = HotList[i][1]    Hots[HotList[i][0]]=img   }}Initialize()///////////////////////////////////////////