				imgarrow = new Array();
				imgarrow[0] = new Image();
				imgarrow[1] = new Image();

				imgarrow[0].src = "images/select_menu_on.jpg";
				imgarrow[1].src = "images/select_menu_off.jpg";
				
				var lastitem;

				var timeoutitem;

				function fmover(item)
				{
						if(lastitem)
						{
							eval("document.images.item" + lastitem + ".src = imgarrow[1].src;");
						}

						clearTimeout(timeoutitem);

						eval("document.images.item" + defitem + ".src = imgarrow[1].src;");
						eval("document.images.item" + item + ".src = imgarrow[0].src;");
						lastitem = item;
				}

				function fmout(item)
				{
					theitem = "fmout1(" + item + ")";

					timeoutitem = setTimeout(theitem, 500);
				}

				function fmout1(item)
				{
						eval("document.images.item" + item + ".src = imgarrow[1].src;");
						eval("document.images.item" + defitem + ".src = imgarrow[0].src;");

				}


				function gotoTop()
				{
					location.href='#top';
				}
