// JavaScript Document

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original:  Daren Craddock (darencraddock@hotmail.com) -->
<!-- Web Site:  http://www.birkdale.sheffield.sch.uk -->

<!-- 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 big(lyr) {

document.all[lyr].style.height='176px'; }

/* small() makes selected layer shorter (height property)*/

function small(lyr) {

document.all[lyr].style.height='35px';

}

/* start() makes all layers short to start with (height property)*/

function start() {

document.all.Layer1.style.height='35px';

 }

//-- !>