$(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
		$("table.data tbody").each(function() {
			$(this).removeClass("odd even");
			$("tr:odd", this).addClass("odd");
			$("tr:even", this).addClass("even");
		});

		// Toggler used mainly for contact page to show and 
		// hide correct contact info.
		$('a.toggler').click(function() {
			if (!$(this).hasClass('active')){
				$('ul.togglelist div.togglebox').slideUp();
				$('a.toggler').removeClass('active');
				$(this).next('div.togglebox').slideDown();
				$(this).addClass('active');
			}
			return false;
		});
	}
);
