/* script to put a delay in the loading time 
of the background images for the drop-down menu.
Use this script to avoid seeing the ugly drop-down
menu items before the webpage even finish loading. */
function news_ticker_delay() //menu delay is called in body onload
{
setTimeout("ticker_show()", 30); // set delay time here in microseconds
}
function ticker_show()
{
var x = document.getElementById("wrapp"); //set the DIV ID here
x.style.visibility = "visible"; // change DIV style property to visible after webpage finish loading   
}

