function getbanner() 
{
banner = new MakeArray(100);
numbanner = 13;  // number of images

banner[0] = "<img src=\"/images/index_01_00.jpg\" width=\"760\" height=\"192\" border=\"0\" alt=\"Tours of the Realm\">"
banner[1] = "<img src=\"/images/index_01_01.jpg\" width=\"760\" height=\"192\" border=\"0\" alt=\"Tours of the Realm\">"
banner[2] = "<img src=\"/images/index_01_02.jpg\" width=\"760\" height=\"192\" border=\"0\" alt=\"Tours of the Realm\">"
banner[3] = "<img src=\"/images/index_01_03.jpg\" width=\"760\" height=\"192\" border=\"0\" alt=\"Tours of the Realm\">"
banner[4] = "<img src=\"/images/index_01_04.jpg\" width=\"760\" height=\"192\" border=\"0\" alt=\"Tours of the Realm\">"
banner[5] = "<img src=\"/images/index_01_05.jpg\" width=\"760\" height=\"192\" border=\"0\" alt=\"Tours of the Realm\">"
banner[6] = "<img src=\"/images/index_01_06.jpg\" width=\"760\" height=\"192\" border=\"0\" alt=\"Tours of the Realm\">"
banner[7] = "<img src=\"/images/index_01_07.jpg\" width=\"760\" height=\"192\" border=\"0\" alt=\"Tours of the Realm\">"
banner[8] = "<img src=\"/images/index_01_08.jpg\" width=\"760\" height=\"192\" border=\"0\" alt=\"Tours of the Realm\">"
banner[9] = "<img src=\"/images/index_01_09.jpg\" width=\"760\" height=\"192\" border=\"0\" alt=\"Tours of the Realm\">"
banner[10] = "<img src=\"/images/index_01_10.jpg\" width=\"760\" height=\"192\" border=\"0\" alt=\"Tours of the Realm\">"
banner[11] = "<img src=\"/images/index_01_11.jpg\" width=\"760\" height=\"192\" border=\"0\" alt=\"Tours of the Realm\">"
banner[12] = "<img src=\"/images/index_01_12.jpg\" width=\"760\" height=\"192\" border=\"0\" alt=\"Tours of the Realm\">"


             var now = new Date()
             var sec = now.getSeconds()

             return banner[sec % numbanner];
     }

     function MakeArray(n) 
     { 
             this.length = n; 
             for (var i = 1; i <= n; i++) { 
                     this[i] = 0 }
                 return this 
     };
