// JavaScript Document

    iarray = new Array();
    iarray[1] = new Image();	iarray[1].src = "images/menu/n_01.gif";
    iarray[2] = new Image();	iarray[2].src = "images/menu/r_01.gif";
    iarray[3] = new Image();	iarray[3].src = "images/menu/n_02.gif";
    iarray[4] = new Image();	iarray[4].src = "images/menu/r_02.gif";
    iarray[5] = new Image();	iarray[5].src = "images/menu/n_03.gif";
    iarray[6] = new Image();	iarray[6].src = "images/menu/r_03.gif";
    iarray[7] = new Image();	iarray[7].src = "images/menu/n_04.gif";
    iarray[8] = new Image();	iarray[8].src = "images/menu/r_04.gif";
	iarray[9] = new Image();	iarray[9].src = "images/menu/n_05.gif";
    iarray[10] = new Image();	iarray[10].src = "images/menu/r_05.gif";

	tarray = new Array();
	tarray[1] = new Image();	tarray[1].src = "images/5x5_blank.gif";
	tarray[2] = new Image();	tarray[2].src = "images/menu/t_01.gif";
	tarray[3] = new Image();	tarray[3].src = "images/5x5_blank.gif";
	tarray[4] = new Image();	tarray[4].src = "images/menu/t_02.gif";
	tarray[5] = new Image();	tarray[5].src = "images/5x5_blank.gif";
	tarray[6] = new Image();	tarray[6].src = "images/menu/t_03.gif";
	tarray[7] = new Image();	tarray[7].src = "images/5x5_blank.gif";
	tarray[8] = new Image();	tarray[8].src = "images/menu/t_04.gif";
	tarray[9] = new Image();	tarray[9].src = "images/5x5_blank.gif";
	tarray[10] = new Image();	tarray[10].src = "images/menu/t_05.gif";

	function swap(no,indexi)
	{
	    document ["item" + no].src = iarray[indexi].src;
	    document ["t_item"].src = tarray[indexi].src;

		if (document.selection)
    	{
    	  document.selection.empty()
   		}
	}