/* Date */
now = new Date
year = now.getFullYear()

/* jQuery */
$(document).ready(function() {
	
	$("a").filter(function() { return this.hostname && this.hostname !== location.hostname; }).addClass('external');

	$('.external').after('<span class="external_icon">R</span>');
	$('section#content article:last-child').after('<a class="back_top" href="#top">{</a>');
	$('header:contains("Recent Activities")').css('margin-top', '20px');

});
