var theImages = new Array();var theURLs = new Array();// To add more image files, continue with the// pattern below, adding to the array.theImages[0] = 'images/rotating_header/website_banner1.jpg';theURLs[0] = 'http://www.artifexphotography.com/';theImages[1] = 'images/rotating_header/website_banner2.jpg';theURLs[1] = 'http://www.bingemans.com/';theImages[2] = 'images/rotating_header/website_banner3.jpg';theURLs[2] = 'http://www.blackforestrestaurant.ca/';theImages[3] = 'images/rotating_header/website_banner4.jpg';theURLs[3] = 'http://www.yourweddingportfolio.ca/pdf_online/KW_entryform.pdf';theImages[4] = 'images/rotating_header/website_banner5.jpg';theURLs[4] = 'http://www.deltahotels.com/hotels/hotels.php?hotelId=22';// do not edit anything below this line	var p = theImages.length;	var prevImage = 'x';	var whichImage = 'x';	function showImage(){		while (whichImage==prevImage) {		      whichImage = Math.round(Math.random()*(p-1));		}		prevImage=whichImage;		document.write('<a href="'+theURLs[whichImage]+'" target="new"><img src="'+theImages[whichImage]+'" border="0" alt="side image '+whichImage+'"></a>');	}