var today = new Date();
var year = today.getYear();
 
if (year < 1900) {
	year = year + 1900;
}

document.write('<div class="footer" id="footer">');
document.write('Copyright &copy; 2007 - ' + year + ' Body Works by Jodie');
document.write('&nbsp;|&nbsp;');
document.write('<a href="/">Home</a>');
document.write('&nbsp;|&nbsp;');
document.write('<a href="/services.htm">Services</a>');
document.write('&nbsp;|&nbsp;');
document.write('<a href="/prices.htm">Prices</a>');
document.write('&nbsp;|&nbsp;');
document.write('<a href="/faq.htm">FAQ</a>');
document.write('</div>');
document.write('<div id="developer" style="font-size: smaller;">');
document.write('by <a href="http://www.webtechnologyinc.com">Web Technology, Inc.</a>');
document.write('</div>');
