$(document).ready(function () {
	//populate current year
	$("#year").text((new Date).getFullYear());
});


function setArtist(name, website) {
	$(document).ready(function () {
		$("#contact h1").html(name);
		$("#contact h2").html('<a href="http://' + website + '">' + website + '</a>');
	});
}

