flHover = function()
{
var flEls = document.getElementById("navigation-1").getElementsByTagName("LI");

for (var i=0; i<flEls.length; i++)
{
flEls[i].onmouseover = function()
{
this.className += " flhover";
}
flEls[i].onmouseout = function()
{
this.className = this.className.replace(new RegExp(" flhover\\b"), "");
}
}
}

if (window.attachEvent) window.attachEvent("onload", flHover);


// =====================================
// Do not edit anything below this line!
// =====================================



// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 3000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 2;
var showHot = false;       // don't change this

function control(how){
var foo = document.getElementById("PictureBox");
foo.src = Picture[how];
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[how];

/*
if (document.getElementById) document.getElementById("PhotoBox").innerHTML= Picture[how];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
*/
}

function imageRotateLoad() {

var tss;
var iss;
jss = 1;
pss = Picture.length-1;

preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}


showHot=true;self.focus();
} 


