        function changeImage8()
            {
            var list = document.getElementById('optionlist8');
            document.mainimage8.src = list.options[list.selectedIndex].value;
            }
        function prevImage8()
            {
            var list = document.getElementById('optionlist8');
            if(list.selectedIndex == 0)
                {
                list.selectedIndex = list.options.length-1;
                }
            else
                {
                list.selectedIndex--;
                }
            changeImage8();
            }
        function nextImage8()
            {
            var list = document.getElementById('optionlist8');
            if(list.selectedIndex == list.options.length-1)
                {
                list.selectedIndex = 0;
                }
            else
                {
                list.selectedIndex++;
                }
            changeImage8();
            }
