// JavaScript Document
rowArray = new Array();
rowArray[0] = '<FORM>' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/ubc/main.htm" onmouseover="refreshTable(1)">Programs</A>' +
			  '  |  ' +
              '<A HREF="http://www.ultimatebootcamp.com/static/about/index.html" onmouseover="refreshTable(2)">About</A>' +
			  '  |  ' +
			  '<A HREF="/dyn/General/BeginPolicy.aspx" onmouseover="refreshTable(3)">Register</A>' +
			  '  |  ' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/media/index.html" onmouseover="refreshTable(4)">Media</A>' +
			  '  |  ' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/photos/index.html" onmouseover="refreshTable(5)">Photos</A>' +
			  '  |  ' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/contact/index.html" onmouseover="refreshTable(6)">Contact Us</A>' +
			  '  |  ' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/faqs/index.html" onmouseover="refreshTable(7)">FAQs</A>' +
			  '  |  ' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/newsletter/index.html" onmouseover="refreshTable(8)">Newsletter</A>' +
			  '</FORM>';
rowArray[1] = '<div align="center"><A HREF="http://www.ultimatebootcamp.com/static/ubc/index.html">Ultimate Bootcamp</A>' +
			  '  |  ' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/ubc/blast.htm">Bootcamp Blast</A>' +
			  '  |  ' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/ubc/basics.htm">Bootcamp Basics</A>' +
			  '  |  ' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/personal_training/index.html">Personal Training</A></div>';
rowArray[2] = '<div align="center"><A HREF="http://www.ultimatebootcamp.com/static/about/index.html">Trainers</A>' +
			  '  |  ' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/ubc/locations/outside.htm">Locations</A>' +
			  '  |  ' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/about/difference.htm">Philosophy</A>' +
			  '  |  ' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/ubc/testimonials.htm">Results</A>' +
			  '  |  ' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/about/partners.htm">Partners</A> ' +
			  '  |  ' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/about/corporate.htm">Corporate Perks</A> ' +
			  '  |  ' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/about/events.htm">Events</A></div>';
rowArray[3] = '<div align="center"><A HREF="/dyn/General/BeginPolicy.aspx">Registration and Checkout</A></div>';
rowArray[4] = '<div align="center"><A HREF="http://www.ultimatebootcamp.com/static/media/index.html">Media Coverage</A>' +
			  '  |  ' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/media/pr.htm">News Releases</A>' +
			  '  |  ' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/media/kit.htm">Media Kit</A></div>';
rowArray[5] = '<div align="center"><A HREF="http://www.ultimatebootcamp.com/static/photos/index.html">Photos</A></div>';
rowArray[6] = '<div align="center"><A HREF="http://www.ultimatebootcamp.com/static/contact/index.html">Contact</A>' + 
			  '  |  ' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/contact/jobs.htm">Work for Us</A></div>';
rowArray[7] = '<div align="center"><A HREF="http://www.ultimatebootcamp.com/static/faqs/ubc_faq.htm">Ultimate Bootcamp</A>' +
			  '  |  ' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/faqs/blast_faq.htm">Bootcamp Blast</A>' +
			  '  |  ' +
			  '<A HREF="http://www.ultimatebootcamp.com/static/faqs/personal_training_faq.htm">Personal Training</A></div>';
rowArray[8] = '<div align="center"><A HREF="http://www.ultimatebootcamp.com/static/newsletter/index.html">Sign Up</A></div>';


function refreshTable(x)
{   //var output = '<TABLE align="center"><TR><TD colspan="2" height="17" bgcolor="#CCCCCC" class="subnav_menu" align="center" valign="top">' + rowArray[0] + '</TD></TR>';
    var output = '<TABLE align="center"><TR><TD colspan="2" height="17" bgcolor="#CCCCCC" class="subnav_menu" align="center" valign="top">' + rowArray[x] + '</TD></TR></TABLE>';
    
    if (document.all)
        document.all('myTable').innerHTML = output;
    else if (document.layers) {
        document.layers['myTable'].document.open();
        document.layers['myTable'].document.writeln(output);
        document.layers['myTable'].document.close();
    }
}