function initRotator() {
    var rotator1 = new dw_Rotator('img1', 7000, "../files/images/rotate/");
    
	// Add the names of the images you want to rotate. NOTE: only change information between the quotation marks. the last image does NOT have a comma after it. ORDER IS IMPORTANT!!!
    rotator1.addImages(
                "ladies.jpg",
		"ourhistory.jpg",
		"whattoexpect.jpg",
		"ourvision.jpg"
		);
    // Add the corresponding page below. MUST be in same order as images above. Each link must start with a / mark.
    rotator1.addActions(
                "/content/worship",
		"/history",
		"/what-to-expect",
		"/vision"
    );
    //rotator1.rotate(); // sometimes may want to call rotate here
    
    dw_Rotator.start();
}
// JavaScript Document
