// Script for PP2

jQuery(function(){

	jQuery('#copyyear').html(currYear());
	jQuery('.acct_columns').equalHeights(true);

});

function currYear() {
	today = new Date();
	thisYear = today.getFullYear();
	return thisYear;
}
