// JavaScript Document
$(document).ready(function() 
{
	var copyUpdate;
	var theDate = new Date();
	var startYear = '2007';
	var thisYear = theDate.getFullYear().toString(10);
	if (startYear == thisYear) {
		copyUpdate = startYear;
	}
	else {
		copyUpdate = startYear + "-" + thisYear;
	}
	$('#copyright').html(copyUpdate);
});
