function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}

window.onload = function() {
externalLinks();
init();
}

function googleMaps() {
	window.open('http://maps.google.com/maps?f=q&hl=en&q=59+Industrial+Avenue,+williston,+vt&sll=37.0625,-95.677068&sspn=51.310143,87.890625&ie=UTF8&ll=44.45891,-73.130064&spn=0.005697,0.010729&z=17&iwloc=addr&om=1')
}

var theImages = new Array() 

	theImages[0] = 'images/pic1.jpg'
	theImages[1] = 'images/pic2.jpg'
	theImages[2] = 'images/pic3.jpg'
	theImages[3] = 'images/pic4.jpg'
	theImages[4] = 'images/pic5.jpg'
	theImages[5] = 'images/pic6.jpg'
	theImages[6] = 'images/pic7.jpg'
	theImages[7] = 'images/pic8.jpg'
	
	var j = 0
	var p = theImages.length;
	var preBuffer = new Array()
	
	for (i = 0; i < p; i++){
	   preBuffer[i] = new Image()
	   preBuffer[i].src = theImages[i]
	}
	
	var whichImage = Math.round(Math.random()*(p-1));
	
	function showImage()
	{
		document.write('<img class="sideImage" src="'+theImages[whichImage]+'">');
	}
