<!-- Original:  Mike Canonigo (mike@canonigo.com) --><!-- The JavaScript Source!! http://javascript.internet.com --><!-- BeginNewImg = new Array (	"images/stock_photography/texas-slideshow-photos/Enchanted-Rock-Sunset.jpg",	"images/stock_photography/texas-slideshow-photos/Bolivar-Lighthouse.jpg",	"images/stock_photography/texas-slideshow-photos/texas-perdenales-photo.jpg",	"images/stock_photography/texas-slideshow-photos/downtown-houston-skyline.jpg",	"images/stock_photography/texas-slideshow-photos/Hiker-on-Boulders-Enchanted-Rock.jpg",	"images/stock_photography/texas-slideshow-photos/great-white-egret.jpg",	"images/stock_photography/texas-slideshow-photos/San-Fernando-Cathedral.jpg",	"images/stock_photography/texas-slideshow-photos/Cypress-Trunks-Reflection.jpg",	"images/stock_photography/texas-slideshow-photos/baby-alligator.jpg",	"images/stock_photography/texas-slideshow-photos/texas-landscape-sunset.jpg",	"images/stock_photography/texas-slideshow-photos/houston-cityscape-night.jpg",		"images/stock_photography/texas-slideshow-photos/golden-orb-weaver-spider.jpg",	"images/stock_photography/texas-slideshow-photos/Pedernales-River.jpg",		"images/stock_photography/texas-slideshow-photos/white-ibis.jpg",	"images/stock_photography/texas-slideshow-photos/vintage-windmill-sunset.jpg",	"images/stock_photography/texas-slideshow-photos/bluebonnet-sunset-picture.jpg",	"images/stock_photography/texas-slideshow-photos/blue-heron-silhouette.jpg",	"images/stock_photography/texas-slideshow-photos/houston-skyline-picture.jpg",	"images/stock_photography/texas-slideshow-photos/cactus-texas-bluebonnets.jpg",	"images/stock_photography/texas-slideshow-photos/Cascade-Bandera-County.jpg" );var ImgNum = 0;var ImgLength = NewImg.length - 1;//Time delay between Slides in millisecondsvar delay = 3000;var lock = false;var run;function chgImg(direction) {	if (document.images) {		ImgNum = ImgNum + direction;	if (ImgNum > ImgLength) {		ImgNum = 0;	}	if (ImgNum < 0) {		ImgNum = ImgLength;	}	document.slideshow.src = NewImg[ImgNum];	   }}run = setInterval("chgImg(1)", delay);//  End -->
