// footer.js
// stores the name to put into the footer copyright
var addCopyright = true;
var footerName = "Tiny Tots Therapy Inc, 551 Park ave,Ste 5, Scotch Plains,NJ 07076";
if (addCopyright)
document.write(" by " + footerName + " &#169; 2012 ");

