$(document).ready(function() {
	var copyUpdate;
	var theDate = new Date();
	var startYear = '2004';
	var thisYear = theDate.getFullYear().toString(10);
	if (startYear == thisYear) 
			{
				copyUpdate = startYear;
			}
		else {
		copyUpdate = startYear + "-" + thisYear;
		}
	$('#copyright').html('Copyright &copy; ' + copyUpdate + ' Through The Eye International (Formerly The Herb Farm Co.)');
});