$(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");
		});
		
		$('a.question').click(function(){
									   
			if($(this).hasClass("clickquestion")){
				
				return false;
			
			} else{
			
				$("a.question").removeClass("clickquestion");
				
				$("p.answer").slideUp();
				
				$(this).addClass("clickquestion");
				
				$(this).next("p").slideDown();
			
				return false;
			
			}
		
		
		});

	}
);
