function Menu (page) {
document.writeln('<div class="menu">');

    if (page == 'home') {
        document.write('<a href="index.html" class="select">Home</a> ');
    } else {
        document.write('<a href="index.html" class="normal">Home</a> ');
    }

    document.write('|');

    if (page == 'executive') {
        document.write(' <a href="executive.html" class="select">Executive Tracks</a> ');
    } else {
        document.write(' <a href="executive.html" class="normal">Executive Tracks</a> ');
    }

    document.write('|');

    if (page == 'cio') {
        document.write(' <a href="cio.html" class="select">CIO Panels</a> ');
    } else {
        document.write(' <a href="cio.html" class="normal">CIO Panels</a> ');
    }

    document.write('|');

    if (page == 'ceo') {
        document.write(' <a href="ceo.html" class="select">CEO Panels</a> ');
    } else {
        document.write(' <a href="ceo.html" class="normal">CEO Panels</a> ');
    }

    document.write('|');

    if (page == 'technology') {
        document.write(' <a href="technology.html" class="select">Technology Panels</a> ');
    } else {
        document.write(' <a href="technology.html" class="normal">Technology Panels</a> ');
    }
	
    document.write('|');

    if (page == 'presentations') {
        document.write(' <a href="presentations.html" class="select">Presentations</a> <img src="img/n.gif" alt="New"> ');
    } else {
        document.write(' <a href="presentations.html" class="normal">Presentations</a> <img src="img/n.gif" alt="New"> ');
    }

    document.write('<br>');

    if (page == 'photos') {
        document.write(' <a href="photosa1.html" class="select">Photos</a> <img src="img/n.gif" alt="New"> ');
    } else {
        document.write(' <a href="photosa1.html" class="normal">Photos</a> <img src="img/n.gif" alt="New"> ');
    }

    document.write('|');
 
 
 
    if (page == 'objetives') {
        document.write(' <a href="objetives.html" class="select">Event Objetives</a> ');
    } else {
        document.write(' <a href="objetives.html" class="normal">Event Objetives</a> ');
    }

    document.write('|');

    if (page == 'agenda') {
        document.write(' <a href="agenda.html" class="select">Event Agenda</a> ');
    } else {
        document.write(' <a href="agenda.html" class="normal">Event Agenda</a> ');
    }

    document.write('|');

    if (page == 'rsvp') {
        document.write(' <a href="rsvp.html" class="select">RSVP Information</a> ');
    } else {
        document.write(' <a href="rsvp.html" class="normal">RSVP Information</a> ');
    }

    document.write('|');

    if (page == 'venue') {
        document.write(' <a href="venue.html" class="select">Venue</a> ');
    } else {
        document.write(' <a href="venue.html" class="normal">Venue</a> ');
    }

    document.write('|');

    if (page == 'sponsors') {
        document.write(' <a href="sponsors.html" class="select">Sponsors</a> ');
    } else {
        document.write(' <a href="sponsors.html" class="normal">Sponsors</a> ');
    }


    document.write('|');

    if (page == 'registration') {
        document.write(' <a href="form.html" class="select">Registration </a>');
    } else {
        document.write(' <a href="form.html" class="normal">Registration </a>');
    }


document.writeln('</div>');
}





