// JavaScript Document<!-- Picture of the day Javascript to show a different picture depending on the day of the month<!-- All links are relative to the site to allow usage from any pointtheDate= new Date();var day = theDate.getDate();var year = theDate.getYear();year = (year < 2000) ? year + 1900 : year;var textdate = theDate.getDate() + '.' + (theDate.getMonth() + 1) + '.' + year;var numquotes = 31;quotes = new Array(numquotes+1);quotes[1] = "The Icebar in the Nordic Sea hotel reception, Stockholm, Sweden";quotes[2] = "View across the Denmark sound in Karlskrona, Sweden";quotes[3] = "Swweet tooth? Chocolate breasts in a shop window in Brugges, Belgium";quotes[4] = "View up Nyhavn in Copenhagen, Denmark";quotes[5] = "Valerenga fans show their support against the Toon, Oslo, Norway";quotes[6] = "Icy view across the fjord as the suns goes down in Oslo, Norway";quotes[7] = "Dragon lamp in the Vampire bar in Stockholm, Sweden";quotes[8] = "The building of the treehouse in Alnwick gardens, Northumberland, England";quotes[9] = "Neil and myself doing the tourist thing in Hallstadt, Austria";quotes[10] = "Big pants needed after Oktoberfest beers! Shop window of Lowden Frey, Munich, Germany";quotes[11] = "Neil and myself sliding down the shutes in the salt mines at Hallein, Austria";quotes[12] = "Kev playing the Tonini in the Katacoombe bar of Excess in the Bermuda Triangle, Vienna, Austria";quotes[13] = "Sunset view down the Danube in Budapest, Hungary";quotes[14] = "Scott and me in front of El Capitan, Yosemite National park, US of A";quotes[15] = "Dykes on bikes parade through the streets of San Francisco, USA";quotes[16] = "Roger, me and Barry drinking the froth off a couple in Elferhaus, Innsbruck, Austria";quotes[17] = "View from pier39 across to the Golden Gate bridge in San Francisco, USA";quotes[18] = "Boy band in the making, the BC team down in Istanbul, Turkey";quotes[19] = "Merter and Thomas trying to decide which is East and which is West on the Bosphorus in Istanbul, Turkey";quotes[20] = "Kev, Neil, Martin, Martin and his lass doing it wet style in the Kafer tent at Oktoberfest, Munich, Germany";quotes[21] = "Me and Martin get our just rewards for hiking up to Kloster Andeches in Bavaria, Germany";quotes[22] = "View across Ljubljana, Slovenia from the castle towards the Alps";quotes[23] = "Looking back towards Grossglockner from Bad Gastein, Austria";quotes[24] = "View of Neuschwanstein and Hohenschwangau from the Tegelberg, Germany";quotes[25] = "Through the trees to Bothal castle, Northumberland, England";quotes[26] = "Down the Wansbeck river from the stepping stones at Bothal, Northumberland, England";quotes[27] = "Insects pollinating the flowers in Bothal, Northumberland, England";quotes[28] = "From level 7 of St James's park, home of the Toon, across Newcastle, England and down to the river";quotes[29] = "Me and my mam enjoying a drink or two up on Shirley heights in Antigua with Nelson's dockyard in the background";quotes[30] = "View of St Maarten in the Caribbean from a couple of thousand feet";quotes[31] = "Well they started it! Snow balls at the ready in Kronplatz, Italy";document.write('<h2 align="center">Picture of the day for ' + textdate + '</h2><br>');document.write('<div align="center"><a href="picture_' + day + '.jpg"><img src="picture_' + day + '.jpg" alt=[Click to view full size image] width="75%" height="75%"></a></div>');document.write('<h3 align="center"><i>' + quotes[day] + '</i></h3>');// End