﻿var thetime = 2500;
function image1() {
    document.getElementById("HeartKCSpeedDatingPhoto").style.backgroundImage = "url(images/4_the_heart_KC_speed_dating_photo001.png)";
    document.getElementById("HeartKCSpeedDatingPhoto").style.left = "380px";
    setTimeout("image2()", thetime);
}
function image2() {
    document.getElementById("HeartKCSpeedDatingPhoto").style.backgroundImage = "url(images/4_the_heart_KC_speed_dating_photo002.png)";
    document.getElementById("HeartKCSpeedDatingPhoto").style.left = "608px";
    setTimeout("image3()", thetime);
}
function image3() {
    document.getElementById("HeartKCSpeedDatingPhoto").style.backgroundImage = "url(images/4_the_heart_KC_speed_dating_photo003.png)";
    setTimeout("image4()", thetime);
}
function image4() {
    document.getElementById("HeartKCSpeedDatingPhoto").style.backgroundImage = "url(images/4_the_heart_KC_speed_dating_photo004.png)";
    setTimeout("image1()", thetime);
}

