

// NOTE: To use a ' add a slash before it like this \'

document.write('<a href="index.htm">Home</a>');
document.write('&nbsp;|&nbsp;');
document.write(' <a href="about.htm">About Us</a>');
document.write('&nbsp;|&nbsp;');
document.write(' <a href="tunes.htm">Tunes</a>');
document.write('&nbsp;|&nbsp;');
document.write(' <a href="reviews.htm">Reviews</a>');
document.write('&nbsp;|&nbsp;');
document.write(' <a href="contact.htm">Contact Us</a>');

// SCRIPT TO ALLOW IE ACTIVE CONTENT

theObjects = document.getElementsByTagName("object"); 
for (var i = 0; i < theObjects.length; i++) { 
theObjects[i].outerHTML = theObjects[i].outerHTML; 
}




//  End -->