<!--

// The following code places the Current Year in the Copyright Info field

var currDate = new Date();
var currYear = currDate.getFullYear();
document.write('Copyright ' + '&copy; ' + currYear + ' | The Love Chef ' + '&reg; ' + '| All rights reserved.');

// -->