$(document).ready(function() {
	$('.start-hidden').hide();
	$('.toggle-next').click(function() {
	    $(this).next().slideToggle();
    });
    
    // These next two lines are for email obfuscation
    $(".replaceAt").replaceWith("@");
    //$(".obfuscate").attr("href", "mailto:"+$('.obfuscate').text());
	
});