        function changeImage7()
            {
            var list = document.getElementById('optionlist7');
            document.mainimage7.src = list.options[list.selectedIndex].value;
            }
        function prevImage7()
            {
            var list = document.getElementById('optionlist7');
            if(list.selectedIndex == 0)
                {
                list.selectedIndex = list.options.length-1;
                }
            else
                {
                list.selectedIndex--;
                }
            changeImage7();
            }
        function nextImage7()
            {
            var list = document.getElementById('optionlist7');
            if(list.selectedIndex == list.options.length-1)
                {
                list.selectedIndex = 0;
                }
            else
                {
                list.selectedIndex++;
                }
            changeImage7();
            }
