//<![CDATA[

$(function() {
	$("#accordion").accordion({autoHeight : false, active : false});
	$("#accordion").css({'font-family' : 'Arial, sans-serif', 'font-size' : '9pt'});
	$("#accordion p").css({'margin-top' : '0px', 'line-height' : '1.6em'});
	$('.uic-button').hover(
		function() { $(this).addClass('ui-state-hover'); },
		function() { $(this).removeClass('ui-state-hover'); }
	);
});

function toggle_solution(theSolution) {
	for (var i = 0; i < 10; i++) {
		$('#solution_' + i).hide();
	}
	
	$('#solution_' + theSolution).show();
}

function sMale(email) {
	switch (email) {
		case "julia":
			to = "&#106;&#117;&#108;&#105;&#97;";
			break;
		case "patrick":
			to = "&#112;&#97;&#116;&#114;&#105;&#99;&#107;";
			break;
		case "dan":
			to = "&#100;&#97;&#110;";
			break;
		case "josh":
			to = "&#106;&#111;&#115;&#104;";
			break;
		case "chris":
			to = "&#99;&#104;&#114;&#105;&#115;";
			break;
		case "info":
			to = "&#105;&#110;&#102;&#111;";
			break;
		case "recruits":
			to = "&#114;&#101;&#99;&#114;&#117;&#105;&#116;&#105;&#110;&#103;";
			break;
		}
	domain = "&#97;&#118;&#105;&#100;&#99;&#111;&#109;&#109;&#101;&#114;&#99;&#101;&#46;&#99;&#111;&#109;";
	at = "&#64;";
	mailto = "&#109;&#97;&#105;&#108;&#116;&#111;&#58;";

	document.write("<a href=\"" + mailto + to + at + domain + "\">" + to + at + domain + "</a>");

}

//]]>