var current_location = window.location.href;

$(function() {
	if( current_location.indexOf( "#comments" ) !== -1 ) {
		$("#commentarea").addClass("active");
	}

	$(".activate").click(function() {
		var element_id="#"+$(this).attr("data-element-id");
		$(element_id).toggleClass("active");
		return false;
	});



});
