function init_tabs() {

	// Does element exist?
	if (!$('ul.tabs').length) {
		// If not, exit.
		return;
	}

	// Reveal initial content area(s).
	$('div.tab-content-wrap').each(function() {
		$(this).find('div.tab-content:first').show();
	});

	// Listen for click on tabs.
	$('ul.tabs a').click(function() {

		// If not current tab.
		if (!$(this).hasClass('active')) {

			// Change the current indicator.
			$(this).addClass('active').parent('li').siblings('li').find('a.active').removeClass('active');

			// Show target, hide others.
			$($(this).attr('href')).show().siblings('div.tab-content').hide();
		}

		// Nofollow.
		this.blur();
		return false;
	});
}

$(function() {
  init_tabs();
  
  $("#project_user_tokens").tokenInput("/users.json", {
    crossDomain: false,
    prePopulate: $("#project_user_tokens").data("pre")
  });
});
