//
// Copyright (c) 2008 Thomas P. Goss.  All Rights Reserved.


function display_menu() {

	document.write ('<div class="multi_drop_menus">');
    document.write ('<ul>');
	
    document.write ('<li style="z-index: 7;"><a href="index.html">Home</a>');
    document.write ('</li>');
	
    document.write ('<li style="z-index: 99;"><a href="about.html">About</a>');
    document.write ('<ul>');
    document.write ('<li id="topli"><a href="about_board.html">Board & Staff</a></li>');
	document.write ('<li><a href="about_directions.html">Directions</a></li>');
    document.write ('</ul>');
    document.write ('</li>');
   
	document.write ('<li style="z-index: 99;"><a href="season_ataglance.html">Season</a>');
    document.write ('<ul>');
    document.write ('<li id="topli"><a href="season_ataglance.html">At a Glance</a></li>');
    document.write ('<li><a href="season_conductor.html">Meet the Conductor</a></li>');
	document.write ('<li><a href="season_soloist.html">Meet the Soloists</a></li>');
    document.write ('</ul>');
    document.write ('</li>');
	
	document.write ('<li style="z-index: 99;"><a href="support.html">Support</a>');
    document.write ('</li>');
	
	document.write ('<li style="z-index: 99;"><a href="news_inthenews.html">News</a>');
//	document.write ('<ul>');
//    document.write ('<li id="topli"><a href="news_inthenews.html">GSSO in the News</a></li>');
//    document.write ('<li><a href="news_pressroom.html">Press Room</a></li>');
//    document.write ('</ul>');
    document.write ('</li>');

	document.write ('<li style="z-index: 99;"><a href="tickets_seasontickets.html">Tickets</a>');
    document.write ('<ul>');
    document.write ('<li id="topli"><a href="tickets_seasontickets.html">Concert & Season Tickets</a></li>');
	document.write ('<li><a href="tickets_seatingchart.html">Seating Chart</a></li>');
    document.write ('</ul>');
    document.write ('</li>');
	
	document.write ('<li style="z-index: 1;"><a href="contact.html">Contact</a>');
    document.write ('</li>');

    document.write ('</ul>');
	document.write ('</div>');
}

function display_footer () {
	document.write('<div id="lowernav"><h4><a href="index.html">Home</a> | <a href="about.html">About</a> | <a href="season_ataglance.html">Season</a> | <a href="support.html">Support</a> | <a href="news_inthenews.html">News</a> | <a href="tickets_seasontickets.html">Tickets</a> | <a href="contact.html">Contact</a></h4></div>');
	document.write('<div id="contact"><h7>Granite State Symphony Orchestra, PO Box 3702, Concord, NH 03302-3702 Tel: 603-226-4776</h7></div>');
    document.write('<div id="footer"><p class="footer">&copy; <script type="text/javascript" language="javascript">javascript:display_year ()</script> Granite State Symphony Orchestra. All Rights Reserved. </p></div>');
}

function display_year () {
var m_names = new Array("January", "February", "March", 
"April", "May", "June", "July", "August", "September", 
"October", "November", "December");

var d = new Date();
var curr_date = d.getDate();
var curr_month = d.getMonth();
var curr_year = d.getFullYear();
document.write(curr_year);
}
