/* Script creates a drop-down menu using layers */
/* Copyright Daren Craddock 2002 */
/* Taken from The JavaScript Source http://javascript.internet.com*/

function big(layer,hght) {
document.all[layer].style.height=hght;}

function small(layer) {
document.all[layer].style.height='23px';}

function start() {
document.all.Layer1.style.height='23px';
document.all.Layer2.style.height='23px';
document.all.Layer3.style.height='23px';
document.all.Layer4.style.height='23px';
document.all.Layer5.style.height='23px';
}