$(document).ready(function() {
	externalLinks();
	initTabs();
	initPopup();
});

function externalLinks() {
	$('a[rel="external"]').each(function() {
		var title = $(this).attr('title');
		$(this).attr('title', title + ' (opens in a new window)');
		$(this).addClass('external');
		$(this).click(function() {
			window.open($(this).attr('href'));
			return false;
		});
	});
};

function initTabs() {
	$('.tabs_wrapper').tabs();
};

function initPopup() {
	$('.popup').facebox();
};