$(document).ready(function() {
	$(".expandable .content:first").show();
	$(".expandable").each(function() {
		$("h3",this).click(function() {
			$(this).parent().parent().toggleClass("expanded");
			$(this).parent().parent().find(".content").toggle("fast");
		});
	});
	$("#investorLogin #submitButton").click(function() {
		alert("Sorry, the information you provided is incorrect.");
	});
});