// JavaScript Document

/* script to put a delay in the loading time 
of the background images for the slideshow on home page.
Use this script to avoid seeing the ugly images all at once
before the webpage even finish loading. */
function showcase_delay() //menu delay is called in body onload
{
setTimeout("showcase_show()", 20); // set delay time here in microseconds
}
function showcase_show()
{
var x = document.getElementById("showcase"); //set the DIV ID here
x.style.visibility = "visible"; // change DIV style property to visible after webpage finish loading   
}

