
<!-- Original:  Nicholas Lupien (smylex@aol.com) -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var rand1 = 0;
var useRand = 0;

img_link = new Array;
images = new Array;

images[1] = new Image();
images[1].src = "/Images/2006dea/com_237_02200WMadisonint.jpg";
img_link[1] = '/special_features/2006DEA';
images[2] = new Image();
images[2].src = "/Images/2006dea/hp_095_10lvpc-wood-trim-detail.jpg";
img_link[2] = '/special_features/2006DEA';
images[3] = new Image();
images[3].src = "/Images/2006dea/mis_019_10.jpg";
img_link[3] = '/special_features/2006DEA';
images[4] = new Image();
images[4].src = "/Images/2006dea/res_085_03-838WebsterLR.jpg";
img_link[4] = '/special_features/2006DEA';
images[5] = new Image();
images[5].src = "/Images/2006dea/URB_224_08-MCDC-Sketch-2.jpg";
img_link[5] = '/special_features/2006DEA';


function designlink() {
	document.location.href=img_link[rand1];
}

function swapPic() {
	var imgnum = images.length - 1;
	
	do {
		var randnum = Math.random();
		rand1 = Math.round((imgnum - 1) * randnum) + 1;
	} while (rand1 == useRand);
	
	useRand = rand1;
	document.randimg.src = images[useRand].src;
}
//  End -->
