$(function() {

	var $body = $('body');

	// Open external links in a new browser window:
	$("a[rel*='external'], a.external").attr('target','_blank');

	// Remove last border on Contact Us page:
	if ($body.is('.page-id-11')) {
		$('.entry-content').find('p > a:last').css('border', '0');
	}
	
	// Move Thank You message to the top of the page:
	if ($body.is('.section-support')) {
		$('#gforms_confirmation_message').prependTo($('.entry-content'));
	}

});
