/*This is the code for the top menu*/

var code = "<table style='text-align: left; width: 100%; margin-left: auto; margin-right: auto;' id='top-menu' border='0' cellpadding='0' cellspacing='0'>";
code = code + "<tbody><tr>";
code = code + "<td style='width: 50px;' class='top-menu-button'><a href='index.html'>HOME</a></td>";

code = code + "<td class='top-menu-button'>&nbsp;</td>";

code = code + "<td style='width: 70px;' class='top-menu-button' title='Write your equation directly in the text area &minus; Type «help» if needed' onclick='hideCalculator()'><a>Calculator</a></td>";
code = code + "<td style='width: 40px;' class='top-menu-button' title='All you need to know about units used on this site'><a href='units.html'>Unit</a></td>";
code = code + "<td style='width: 70px;' class='top-menu-button' title='Follow HPWizard.com on Facebook!'><a href='http://www.facebook.com/pages/HPWizardcom/118231521566469'>Facebook</a></td>";
code = code + "<td style='width: 60px;' class='top-menu-button' title='Get tutorials on YouTube!'><a href='http://www.youtube.com/user/HPWizardDOTcom'>Tutorials</a></td>";
code = code + "<td style='width: 50px;' class='top-menu-button' title='All you need to know about this site'><a href='about.html'>About</a></td>";
code = code + "</tr></tbody></table>";

document.getElementById("top-menu").innerHTML = code;
