/*!
 * copyright.js written by Bill Fisher 2008
 *
 * developed for White Lotus Design / ParentingHelp123.org / WithinReach
 *
 * this script updates the DOM with a copyright notice for the current year
 *
 */

//the domready event is dependant on mootools
window.addEvent('domready', copyright);

function copyright(){
	var d = new Date();
	var n = document.getElementById("autoCopyright").firstChild; 
	n.parentNode.replaceChild(document.createTextNode("copyright " + d.getFullYear() + " WithinReach"), n);	
}
