<!-- hide script from old browsers

// Script to create a drop-down menu effect using layers.

//(c)Copyright Daren Craddock 2002

//You may use this code in any application, no limits,

//provided that you acknowledge Daren Craddock as the originator.



// big() makes selected layer longer (height property)

function expand(lyr) {
document.getElementById(lyr).style.height='180px'; }
/* small() makes selected layer shorter (height property)*/

function shorten(lyr) {
document.getElementById(lyr).style.height='20px';
}

/* start() makes all layers short to start with (height property)*/
function start() {
document.all.Layer1.style.height='32px';
document.all.Layer2.style.height='32px';
document.all.Layer3.style.height='32px'; }

//-- !>