$(document).ready(function() {
	
	$("#toggletit div").hide();
	$("#toggletit h2").click(function() {
		$(this).next("div").slideToggle();
	});
	
	$(".sahkoposti").each(function() {
      var $email = $(this);
      var address = $email.text()
         .replace(/\s*\[\]\s*/, '@')
	  $email.attr('href','mailto:' + address);
      $email.html(address);
   });
});

var addthis_config = {
	ui_click:true,
	ui_language: "fi"
}
