/* 
designtoo :: Brochure One 
Author: Dan Hawes
dhawes@designtoo.com
11-Sept-2006
Revision 1.0
*/



// Sets year for copyright notice on page footer
var thisYear;
today = new Date();
thisYear = today.getUTCFullYear(); // Firefox needs proper UTC construct, getYear() produces incorrect result

function copyrightYear() {
document.write(thisYear);
}
