// JavaScript Document

//<img name="SITEPHOTO" src="'+siteImages[whichImage]+'" width="461" height="223" border="0" id="SITEPHOTO" alt="solid surface countertop fabrication, installation and repair">


var gallery = new Array();
gallery[0] = new Array("1.jpg","2.jpg","3.jpg","4.jpg","5.jpg","6.jpg");

function pickImageFrom(whichGallery)
{
var idx = Math.floor(Math.random() * gallery[whichGallery].length);
document.write('<img src="gfx/randomPhotos/welcome/' + gallery[whichGallery][idx] + '" width="82" height="71" border="0" alt="Welcome to Pro Tops Inc - Solid Surface Professionals serving greater Phoenix">');
}


