// JavaScript Document

		function randomPhoto(position) {
			var x = 6;
			var now = new Date();
			var sec = now.getSeconds();
			var ad = sec % x;
			var baseHref = "images/global/photo_";
			ad +=1;
				if (position=="left") {
					if (ad==1) {
						banner="albury_fishing";
						alt="Great Fishing, Albury Wodonga";
						url="albury_wodonga";
						text="Great Fishing,<br />Albury Wodonga";
					}
					if (ad==2) {
						banner="albury_golf";
						alt="Perfect Round, Albury Wodonga";
						url="albury_wodonga";
						text="Perfect Round,<br />Albury Wodonga";
					}
					if (ad==3) {
						banner="blacktown";
						alt="Featherdale Wildlife Park, Blacktwn";
						url="blacktown";
						text="Featherdale Wildlife<br />Park, Blacktwn";
					}
					if (ad==4) {
						banner="three_sisters";
						alt="The Three Sisters, Blue Mountains";
						url="blue_mountains";
						text="Three Sisters,<br />Blue Mountains";
					}
					if (ad==5) {
						banner="kanangra_boyd";
						alt="Kanangra Boyd, Oberon";
						url="oberon";
						text="Kanangra Boyd,<br />Oberon";
					}
					if (ad==6) {
						banner="sutherland";
						alt="Sutherland Shire";
						url="sutherland";
						text="Sutherland Shire";
					}
				}
				if (position=="right") {
					if (ad==1) {
						banner="hawkesbury";
						alt="River Recreation, DelRio - Hawkesbury";
						url="hawkesbury";
						text="River Recreation,<br />DelRio - Hawkesbury";
					}
					if (ad==2) {
						banner="manly_beach";
						alt="Manly Beach Sunrise";
						url="manly";
						text="Manly Beach Sunrise";
					}
					if (ad==3) {
						banner="nepean_belle";
						alt="Nepean Belle, Penrith";
						url="penrith";
						text="Nepean Belle,<br />Penrith";
					}
					if (ad==4) {
						banner="norah_head";
						alt="Norah Head Lighthouse, Central Coast";
						url="central_coast";
						text="Norah Head Lighthouse,<br />Central Coast";
					}
					if (ad==5) {
						banner="sydney_hills";
						alt="Picnic with a view, Sydney Hills";
						url="sydney_hills";
						text="Picnic with a view,<br />Sydney Hills";
					}
					if (ad==6) {
						banner="wagga_wagga";
						alt="Wagga Wagga";
						url="wagga_wagga";
						text="Wagga Wagga";
					}
				}
			//document.write('<a href=\"destination_' + url + '.asp\"');
			document.write('<a href=\"destination_' + url + '.asp\">');
			document.write('<img src=\"' + baseHref + banner + '.jpg\"');
			document.write(' width=\"144\" height=\"246\" border=\"0\"');
			document.write(' alt=\"' + alt + '\" />');
			document.write('<span class=\"photoText\">' + text + '</span><span class=\"photoTextShadow\">' + text + '</span></a>');
		}
		