// Year Stamp - For automatically setting our copyright date each year so we don’t have to change it.

var today = new Date();
document.write(today.getFullYear());

