jQuery(document).ready(function ($) {
	
	//Open external links in new tab/window
	$('a[rel~="external"]').attr('target', '_blank');
	
	//Set sidebar height if less than content height
	var sidebarHeight = $('#sidebar').height();
	var contentHeight = $('#content').height();
	$('#sidebar').height(sidebarHeight);
	$('#content').height(contentHeight);
	if ( sidebarHeight < contentHeight ) {
		$('#sidebar').height(contentHeight + 40);
	} else {
		$('#content').height(sidebarHeight - 40);
	}
	
});
