$(function() {
	/**
	 * Add new window behaviour to external links
	 */
	$("a[rel='external']").attr('target', '_blank');
	
	/**
	 * Smooth scroll
	 */
	$('#content a.scroll').click(function()
	{
		$('body').scrollTo($(this).attr('href'), 1000);
		return false;
	});
});
