		function initRotator() {
				// arguments: image name, rotation speed, (optional) path to images
				var rotator1 = new dw_Rotator('img1', 4000, "images/");
				var rotator2 = new dw_Rotator('img2', 4000, "images/");
				// add the images to rotate into that image object
				rotator1.addImages("c-sms.jpg",
				"s-sms.jpg",
				"c-sms2.jpg"
				);
				rotator2.addImages(
				"s-sms.jpg",
				"c-sms2.jpg",
				"c-sms.jpg"
				);
				dw_Rotator.start();
		}
