// The contents of this file replaced the file at 'menuspecs-Dec09.js'
// purely so URLs didn't need to be updated across the site

// This file write a simple HTML list to the page. It would be better is this was in the pg directly not using JavaScript

function showsChild(ele) {
	ele.getElementsByTagName('ul')[0].style.display = 'block'
}
function hideChild(ele) {
	ele.getElementsByTagName('ul')[0].style.display = 'none'
}

var showChild = ' class="parent" onMouseOver="showsChild(this)" onMouseOut="hideChild(this)"';

document.write('<ul id="nav"><li><a href="/">Home</a></li><li' + showChild + '><a href="/news_current.html">News</a><ul><li><a href="/news_current.html">Current News</a></li><li><a href="/news_previous.html">Previous News</a></li></ul></li><li><a href="/eventinfo.html">Event Info</a></li><li><a href="http://www.tufftruck.com.au/store/" target="_blank">Online Store</a></li><li' + showChild + '><a href="/rules_regs09.html">Competitor Info</a><ul><li><a href="/rules_regs09.html">Rules &amp; Regulations</a></li><li><a href="/faq.html">Event FAQ</a></li><li><a href="/prizes.html">Winner Prizes</a></li></ul></li><li' + showChild + '><a href="/nominations.html">Nomination &amp; Voting</a><ul><li><a href="/nominations.html">Nomination Form</a></li><li><a href="/payment_info.html">Nomination Payment &amp; Form</a></li></ul></li><li><a href="/entrants/TTC2010">TTC2010 Entrants</a></li><li' + showChild + '><a href="/TTC09_Competitors.html">Previous Competitors</a><ul> <li><a href="/TTC09_Competitors.html">TTC09</a></li><li><a href="/TTC08_Competitors.html">TTC08</a></li><li><a href="/TTC07_Competitors.html">TTC07</a></li><li><a href="/TTC06_Competitors.html">TTC06</a></li><li><a href="/TTC05_Competitors.html">TTC05</a></li><li><a href="/TTC02_Competitors.html">TTC02</a></li><li><a href="/TTC01_Competitors.html">TTC01</a></li></ul></li> <li' + showChild + '><a href="/partnering.html">Sponsorship</a><ul><li><a href="/partnering.html">TTC10 Partnering Sponsors</a></li><li><a href="/sponsors_opp.html">Partnering Sponsor Opportunities</a></li></ul></li><li' + showChild + '><a href="/exhibitors_alley.html">4WD Expo</a><ul><li><a href="/exhibitors_alley.html">Exhibitors Alley</a></li><li><a href="/bargains.html">Exhibitor Bargains</a></li></ul></li><li><a href="/otherstuff.html">Spectator Stuff</a></li><li' + showChild + '><a href="http://www.offroadimages.com.au/4x4events2006/index.php?cat=35" target="_blank">Gallery</a><ul><li><a href="http://www.offroadimages.com.au/4x4events2006/index.php?cat=35" target="_blank">TTC08</a></li><li><a href="http://www.offroadimages.com.au/4x4events2006/index.php?cat=24" target="_blank">TTC07</a></li><li><a href="http://www.offroadimages.com.au/4x4events2006/index.php?cat=8" target="_blank">TTC06</a></li></ul></li><li><a href="/links.html">Links</a></li><li><a href="/contactus.html">Contact Us</a></li></ul>');