//The table string is actually the entire html for the left menu.
//do notice that i have everything on ONE line; if you hit enter
//or insert a new line in between the html before the table variable
//is completed, it will not work!
//And make sure not to enter any " in between the table variable;
//Such as cellspacing=0; not cellspacing="0"
//however, you can use a backslash and then a quote
//if you really do need to use it, such as this:
//cellspacing=\"0\"
//this escapes the quotation marks as a string instead of a switch
//in the code.

var table="<table cellspacing=0 cellpadding=0 class=leftnav><tr><td>&nbsp;</td></tr><tr><td><a href=http://www.tweakdperformance.com/index2.html>Home</a></td></tr><tr><td><a href=http://www.tweakdperformance.com/services.html>Services</a></td></tr><tr><td><a href=http://www.tweakdperformance.com/zenstore/>Online Store</a></td></tr><tr><td><a href=http://www.tweakdperformance.com/swaps.html>Completed Swaps</a></td></tr><tr><td><a href=http://www.tweakdperformance.com/contact.html>Contact Us</a></td></tr><tr><td><a href=http://www.tweakdperformance.com/about.html>About Us</a></td></tr><tr><td><a href=http://www.tweakdperformance.com/wiring/orderform.pdf>Wiring Order Form</a></td></tr></table>";
document.write(table);
