﻿

function showImageWhenMouseOver(imageID, imagePath) {
    document.getElementById(imageID).setAttribute('src', imagePath)
}

function showImageWhenMouseOut(imageID, imagePath) {
    document.getElementById(imageID).setAttribute('src', imagePath)
}

var count=1

function slideIt() {
    var imgSlide = document.getElementById("_imgSlide")
    var imgPath = document.getElementById("_hdImgPath").value
    //var tdHeaderMiddle = document.getElementById("_tdslideHeaderMiddle")
    imgSlide.setAttribute('src', imgPath + 'slide' + count + '.gif')
    if (count < 7)
        count++
    else
        count = 1

    setTimeout("slideIt()", 5000)
}


function viewPicture(imgPath) {
    document.getElementById("mainPicture").setAttribute('src', imgPath)
}

function showHideObject(showObject, hideObject) {
    var object1 = document.getElementById(showObject)
    var object2 = document.getElementById(hideObject)

    object1.style.display = "";
    object2.style.display = "none";
    
}
