var submenu=new Array()

//Set submenu contents. Expand as needed. For each content, make sure everything exists on ONE LINE. Otherwise, there will be JS errors.
 
submenu[0]='<table border="0" cellspacing="0" cellpadding="0"><tr> <td width="75"></td><td><a href="http://www2.clitheroetoday.co.uk/custom/gardens/news.html" ><img src="http://www2.clitheroetoday.co.uk/custom/gardens/images/navigation/sub/latest.news.jpg" border="0"></a></td><td width="20"></td><td><a href="http://www2.clitheroetoday.co.uk/custom/gardens/send_stories.html" ><img src="http://www2.clitheroetoday.co.uk/custom/gardens/images/navigation/sub/send.stories.jpg" width="134" height="17" border="0"></a></td></tr></table>'
submenu[1]='<table border="0" cellspacing="0" cellpadding="0"><tr> <td width="75"></td><td><a href="http://www2.clitheroetoday.co.uk/custom/gardens/celeb_gardens.html" ><img src="http://www2.clitheroetoday.co.uk/custom/gardens/images/navigation/sub/celebrity.gardens.jpg" width="113" height="17" border="0"></a></td><td width="20"></td><td><a href="http://www2.clitheroetoday.co.uk/custom/gardens/your_gardens.html" ><img src="http://www2.clitheroetoday.co.uk/custom/gardens/images/navigation/sub/your.gardens.jpg" width="87" height="17" border="0"></a></td><td width="20"></td><td><a href="http://www2.clitheroetoday.co.uk/custom/gardens/webcams.html" ><img src="http://www2.clitheroetoday.co.uk/custom/gardens/images/navigation/sub/webcams.jpg" width="62" height="17" border="0"></a></td><td width="20"></td><td><a href="http://www.kelvinstuttard.co.uk/work/gardens/send_picture.php" ><img src="http://www2.clitheroetoday.co.uk/custom/gardens/images/navigation/sub/send.pictures.jpg" width="143" height="17" border="0"></a></td></tr></table>'
submenu[2]='<table border="0" cellspacing="0" cellpadding="0"><tr> <td width="75"></td><td><a href="http://www2.clitheroetoday.co.uk/custom/gardens/calendar_diary.html" ><img src="http://www2.clitheroetoday.co.uk/custom/gardens/images/navigation/sub/calendar.diary.jpg" border="0"></a></td><td width="20"></td><td><a href="http://www2.clitheroetoday.co.uk/custom/gardens/grow_vegetables.html" ><img src="http://www2.clitheroetoday.co.uk/custom/gardens/images/navigation/sub/grow.vegetables.jpg" width="169" height="17" border="0"></a></td><td width="20"></td><td><a href="http://shop.burnleyexpress.net/c-pab/garden" target="_blank"><img src="http://www2.clitheroetoday.co.uk/custom/gardens/images/navigation/sub/where.buy.jpg" border="0"></a></td></table>'
submenu[3]='<table border="0" cellspacing="0" cellpadding="0"><tr> <td width="75"></td><td><a href="http://www2.clitheroetoday.co.uk/custom/gardens/open_gardens.html" ><img src="http://www2.clitheroetoday.co.uk/custom/gardens/images/navigation/sub/open.gardens.jpg" width="88" height="17" border="0"></a></td><td width="20"></td><td><a href="http://www2.clitheroetoday.co.uk/custom/gardens/flower_shows.html" ><img src="http://www2.clitheroetoday.co.uk/custom/gardens/images/navigation/sub/flower.shows.jpg" border="0"></a></td></tr></table>'

//Set delay before submenu disappears after mouse moves out of it (in milliseconds)
var delay_hide=500

/////No need to edit beyond here

var menuobj=document.getElementById? document.getElementById("describe") : document.all? document.all.describe : document.layers? document.dep1.document.dep2 : ""

function showit(which){
clear_delayhide()
thecontent=(which==-1)? "" : submenu[which]
if (document.getElementById||document.all)
menuobj.innerHTML=thecontent
else if (document.layers){
menuobj.document.write(thecontent)
menuobj.document.close()
}
}

function resetit(e){
if (document.all&&!menuobj.contains(e.toElement))
delayhide=setTimeout("showit(-1)",delay_hide)
else if (document.getElementById&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhide=setTimeout("showit(-1)",delay_hide)
}

function clear_delayhide(){
if (window.delayhide)
clearTimeout(delayhide)
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}