if (TransMenu.isSupported()) {
var ms = new TransMenuSet(TransMenu.direction.down, 0,1, TransMenu.reference.bottomLeft);
// Add contact to Menu
var contact = ms.addMenu(document.getElementById("contact"));
contact.addItem("
Conference
", "/conference", "0");
contact.addItem("Seminar Series
", "/seminars", "0");
// Add speakers to Menu
var speakers = ms.addMenu(document.getElementById("speakers"));
speakers.addItem("2010 Keynote speakers
", "/keynotespeakers", "0");
// Add the-program to Menu
var theprogram = ms.addMenu(document.getElementById("theprogram"));
theprogram.addItem("Conference program
", "/conferenceprogram", "0");
theprogram.addItem("Master Class program
", "/master-class-program", "0");
theprogram.addItem("Social program
", "/social-program", "0");
theprogram.addItem("Who should attend
", "/who-should-attend", "0");
theprogram.addItem("2009 Conference notes
", "/2009-conference-notes", "0");
// Add venue-accomodtion to Menu
var venueaccomodtion = ms.addMenu(document.getElementById("venueaccomodtion"));
venueaccomodtion.addItem("Conference venue
", "/conference-venue", "0");
venueaccomodtion.addItem("Accommodation
", "/accommodation", "0");
venueaccomodtion.addItem("Master Class venue
", "/master-class-venue", "0");
venueaccomodtion.addItem("Domestic travel
", "/travel", "0");
venueaccomodtion.addItem("About Brisbane
", "/about-brisbane", "0");
// Add sponsors to Menu
var sponsors = ms.addMenu(document.getElementById("sponsors"));
sponsors.addItem("", "/exhibitors", "0");
sponsors.addItem("", "/supporters", "0");
// Add seminar-series to Menu
var seminarseries = ms.addMenu(document.getElementById("seminarseries"));
seminarseries.addItem("Pre-Season preparation
", "/pre-season-preparation", "0");
seminarseries.addItem("Recovery & Fatigue
", "/recovery-fatigue", "0");
seminarseries.addItem("Preparing for a Major Competition
", "/major-competition", "0");
function init73() {
if (TransMenu.isSupported()) {
TransMenu.initialize();
}
}
TransMenu.spacerGif = "";
TransMenu.sub_indicator = false;
TransMenu.menuPadding = 0;
TransMenu.itemPadding = 0;
TransMenu.shadowSize = 0;
TransMenu.shadowOffset = 3;
TransMenu.shadowColor = "#888";
TransMenu.hideDelay = 600;
TransMenu.slideTime = 300;
TransMenu.modid = 73;
TransMenu.selecthack = 1;
TransMenu.renderAll();
if (typeof window.addEventListener != "undefined") {
window.addEventListener( "load", init73, false );
} else if (typeof window.attachEvent != "undefined") {
window.attachEvent( "onload", init73 );
} else {
if (window.onload != null) {
var oldOnload = window.onload;
window.onload = function ( e ) {
oldOnload( e );
init73();
}
} else {
window.onload = init73();
}
}
}