﻿var num = 0
function animate()
{
    window.setTimeout('showPic()',1000);
}
function showPic()
{   
    //increment the current pic number
    num++;
    //if we've shown all 5 pics, reset counter 
    if (num > 3) {
        num = 1;
        hidePics();
    }
    else
        Effect.Appear('hpsplash' + num);
    window.setTimeout('showPic()',3000);
}
function hidePics()
{
    for (j=2; j<=2; j++)
    {
        document.getElementById('hpsplash' + j).style.display = "none";
    }
    Effect.Fade('hpsplash3');
}


function HideVideo()
{
innerVideoBox.innerHTML = "<br />"
}
function ShowVideo()
{
innerVideoBox.innerHTML = "<div align='right' style='width:300px;'><br /><a style='font-size:10px;' onclick='HideVideo(); return false;' href='#'>Close X</a><p id='player2'>To see this player you need to install or upgrade your version of flash. <a href='http://www.macromedia.com/go/getflashplayer'>Click here to download.</a></p></div>"
     var FO = {	movie:"../Flash/flvplayer.swf",width:"285",height:"200",majorversion:"7",build:"0",bgcolor:"#FFFFFF",
			    flashvars:"file=../multimedia/flash_video/Advertorial.flv&showdigits=false&autostart=true&image=multimedia/flash_video/images/&showicons=false&volume=100" };
	            UFO.create(	FO, "player2");
}
