function InsertMenu()

{
    text = '<ul id=\"p7PMnav\">';
    text += '  <li><a href=\"index.html">Home</a></li>';
    text += '  <li><a href=\"registration.html\">Registration</a></li>';
    text += '  <li><a href=\"#\" class=\"p7PMtrg\">Conference</a>';
    text += '      <ul>';
    text += '        <li><a href=\"program.html">Program</a></li>';
    text += '        <li><a href=\"speakers.html">Speakers</a></li>';
    text += '        <li><a href=\"location.html">Location</a></li>';	
	text += '        <li><a href=\"travel.html">Housing/Travel</a></li>';
	text += '        <li><a href=\"gallery.html">Gallery</a></li>';
	text += '        <li><a href=\"pressreleases.html">Press Releases</a></li>';
	text += '        <li><a href=\"http://dmvc.vismasters.com/2007_SanDiego/" target="_blank">DMVC 2007</a></li>';
	text += '        <li><a href=\"http://dmvc.vismasters.com/2008_Boston/" target="_blank">DMVC 2008</a></li>';
    text += '      </ul>';
    text += '  </li>';
    text += '  <li><a href=\"sponsors.html">Sponsors</a></li>';
    text += '  <li><a href=\"contact.html">Contact</a></li>';
    text += '  <!--[if lte IE 6]><style>#p7PMnav a{height:1em;}#p7PMnav li{height:1em;}#p7PMnav ul li{float:left;clear:both;width:100%}</style><![endif]-->';
    text += '  <!--[if IE 6]><style>#p7PMnav ul li{clear:none;}</style><![endif]-->';
    text += '  <!--[if IE 7]><style>#p7PMnav a{zoom:100%;}#p7PMnav ul li{float:left;clear:both;width:100%;}</style><![endif]-->';
    text += '</ul> ';

    document.getElementById("menuDiv").innerHTML = text;
}



