﻿$(document).ready(function() {
	/*
	$(".external").each(function() {
		$(this).attr("target") = "_blank";
	});
	
	$(".faq").find("p.faqQuestion").click(function() {
         $(this).next().toggle();
     });
	$("a[@rel='external']").click(function() {
		window.open($(this).href); return false;
	});*/
	$("#beth").click(function() {
		getData('beth.txt', 'crewDetails');
		$("#crewDetails").fadeIn("slow");
	});
	$("#dave").click(function() {
		getData('dave.txt', 'crewDetails')
		$("#crewDetails").fadeIn("slow");
	});
	$("#jenni").click(function() {
		getData('jenni.txt', 'crewDetails')
		$("#crewDetails").fadeIn("slow");
	});
	$("#joe").click(function() {
		getData('joe.txt', 'crewDetails')
		$("#crewDetails").fadeIn("slow");
	});
	$("#john").click(function() {
		getData('john.txt', 'crewDetails')
		$("#crewDetails").fadeIn("slow");
	});
	$("#julie").click(function() {
		getData('julie.txt', 'crewDetails')
		$("#crewDetails").fadeIn("slow");
	});
	$("#karen").click(function() {
		getData('karen.txt', 'crewDetails')
		$("#crewDetails").fadeIn("slow");
	});
	$("#ken").click(function() {
		getData('ken.txt', 'crewDetails')
		$("#crewDetails").fadeIn("slow");
	});
	$("#phil").click(function() {
		getData('phil.txt', 'crewDetails')
		$("#crewDetails").fadeIn("slow");
	});
	$("#steve").click(function() {
		getData('steve.txt', 'crewDetails')
		$("#crewDetails").fadeIn("slow");
	});
	
	$("a.hijax").each(function() {
		if (this.id == "contactForm") {
			// Replace href with a dud link
			$(this.href = "/contactAjax.asp");
		}
	});
});
