﻿function showTheInnLights()
{
    //done to preload the images
    var img1 = new Image();
    img1.src = "../graphics/design/inn_top_2.jpg";
    var img2 = new Image();
    img2.src = "../graphics/design/inn_top_3.jpg";
    //set the animation
    window.setTimeout("showLeftLights()",2000);
}

function showLeftLights()
{
    document.getElementById('bannermenuimg').src = "graphics/design/inn_top_2.jpg";
    window.setTimeout("showRightLight()",1500);
}

function showRightLight()
{
    document.getElementById('bannermenuimg').src = "graphics/design/inn_top_3.jpg";

}

var curLeft = 0;

function moveTitle()
{
    obj = document.getElementById('pagetitle');
    if (curLeft < 75)
    {
        curLeft += 1;
        obj.style.marginLeft = curLeft + "px";
        window.setTimeout("moveTitle()",50);
    }
}