﻿//variable that will increment through the images

var step = 1
var whichimage = 1
function slideit() {
    if (!document.images)
        return
    document.images.slide.src = eval("image" + step + ".src")
    whichimage = step
    if (step < 5)
        step++
    else
        step = 1
    setTimeout("slideit()", 3800)
}
slideit()
function slidelink() {
    if (whichimage == 1)
        window.location = "planroom-blueprint-online.htm"
    else if (whichimage == 2)
        window.location = "onsite-print-solution.htm"
    else if (whichimage == 3)
        window.location = "3d-modeling-rapid-prototyping.htm"
    else if (whichimage == 4)
        window.location = "large-format-printing.htm"
    else if (whichimage == 5)
        window.location = "online-photo-service.htm"
}