$(function()
{
	$("#connectfams a").click(function()
	{
		$("#main_container").append('<div id="modal-layer"></div>');
		$("#main_container").append('<div id="modal"><p>You are about to leave the Springbrook website. We are not responsible for content or interactions on this portion of the website.</p><p class="centered"><a class="proceed" href="http://springbrookfamilies.ning.com" target="_blank">OK</a> &nbsp; <a class="cancel" href="#">Cancel</a></p></div>');
	});
	$("#modal a.proceed").live("click", function() { $("#modal, #modal-layer").remove(); });
	$("#modal a.cancel, #modal-layer").live("click", function()
	{
		$("#modal, #modal-layer").remove();
		return false;
	});
	$("table.curriculum-table tr:even").addClass("even");
});