function submitForm(id)
{
	$(id).submit();
}

$(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");
	
	//input[type=button] clicked for donations
	$(".paypal_submit").click(function(){
		var id;
	//	alert($(id).attr("action") + "\nID: " + id + "\nTage Name: " + this.tagName);
		if(this.tagName == "a" || this.tagName == "A")
		{
			id = "#" + $(this).attr("href");
			$(id).submit();
			return false;
		}
		/*else
		{
			id = "#" + $(this).val();
			$(id).submit();
			return true;
		}*/
		
	});
});