// footer.js
// stores the name to put into the footer copyright
var addCopyright = true;
var footerName = "Cat sitter in portions of Hilliard, Upper Arlington, NW Columbus neighborhoods and Dublin, Ohio";
if (addCopyright)
document.write(" by " + footerName + " &#169; 2012 ");

