var theImages = new Array()//Random-loading imagestheImages[0] = 'images/feature_access.jpg' // replace with names of imagestheImages[1] = 'images/feature_fire.jpg' // replace with names of imagestheImages[2] = 'images/feature_mysonitrol.jpg' // replace with names of imagestheImages[3] = 'images/feature_response.jpg' // replace with names of imagestheImages[4] = 'images/feature_sonavision.jpg' // replace with names of imagestheImages[5] = 'images/feature_verifidedaudio.jpg' // replace with names of images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(){if(whichImage==0){document.write('<a href ="productsaccess.html"><img src="'+theImages[whichImage]+'" border=0 width=430 height=240 alt="Take Control of Who Accesses Your Facility" title=""></a>');}else if(whichImage==1){document.write('<a href ="productsfire.html"><img src="'+theImages[whichImage]+'" border=0 width=430 height=240 alt="Limit Losses with Integrated Fire Protection" title=""></a>');}else if(whichImage==2){document.write('<a href ="productsmysonitrol.html"><img src="'+theImages[whichImage]+'" border=0 width=430 height=240 alt="mySonitrol.com is the Complete Security Management Tool" title=""></a>');}else if(whichImage==3){document.write('<a href ="verifiedresponse.html"><img src="'+theImages[whichImage]+'" border=0 width=430 height=240 alt="What You Need to Know About Verified Response" title=""></a>');}else if(whichImage==4){document.write('<a href ="productssonavision.html"><img src="'+theImages[whichImage]+'" border=0 width=430 height=240 alt="SonaVision™ Digital Video is on Duty 24/7" title=""></a>');}else if(whichImage==5){document.write('<a href ="verifiedaudiodetection.html"><img src="'+theImages[whichImage]+'" border=0 width=430 height=240 alt="Sonitrol’s Verified Audio Intrusion Detection Gets Results" title=""></a>');}}