$(document).ready(
	function() {

		// Open links with rel="external" in new window - like ye ole' target="_blank"
		$('a[rel="external"]').click(function() {window.open( $(this).attr('href') ); return false;});


		// Zebra-stripe data tables
		$("#main_content table tbody").each(function() {
			$(this).removeClass("odd even");
			$("tr:odd", this).addClass("odd");
			$("tr:even", this).addClass("even");
		});
		
		
		
		// LandingTabber. Used on constituent homepages to tab between content.
		$('.landinglp:not("#lp1")').hide();
		$('ul#landingtabber a:first').addClass('active');
		$('ul#landingtabber a').click(function() {
			$('.landinglp').hide();
			$('ul#landingtabber a').removeClass('active');
			$(this).addClass('active');
			var lp = $(this).attr("href");
			$(lp).slideDown('fast');
			return false;
		});
		
		
		// Content Tabber. Used on Enrollment pages within editable content region.
		$('.tab_content:not("#tab_content1")').hide();
		$('ul.content_tabs a:first').addClass('active');
		$('ul.content_tabs a').click(function() {
			$('.tab_content').hide();
			$('ul.content_tabs a').removeClass('active');
			$(this).addClass('active');
			var lp = $(this).attr("href");
			$(lp).slideDown('fast');
			return false;
		});
		

	}
);

