$(document).ready(function(){
	
	// copyright
	var year = new Date().getFullYear();
	var start_year = $("#copy").html();
	if(year != start_year){
		$("#copy").empty();
		$('#copy').prepend(start_year + " - " + year);
	}
	
});
