function rotator() {
	var images = new Array();
	images[0] = '<img src="./images/dog.cell.phone.jpg" alt="Did Your Dog Use Your Cell Phone As A Chew Toy?" title="Did Your Dog Use Your Cell Phone As A Chew Toy?" />';
	images[1] = '<img src="./images/laptop.jpg" alt="Did Your Laptop Fall Off Your Lap?" title="Did Your Laptop Fall Off Your Lap?" />';
	images[2] = '<img src="./images/power.surge.jpg" alt="Did A Power Surge Zap Your Hard Drive?" title="Did A Power Surge Zap Your Hard Drive?" />';

	var ga = images.length - 1;
	var hall = Math.round(Math.random() * ga);
	document.write(images[hall]);
}