jQuery(document).ready(function() {

	$("h2.toggl").css("cursor", "pointer").css("display", "inline");
	$("h2.toggl span").css("border-bottom", "1px dashed #69CBDF");
	$("h2.toggl").next().toggle();
    $("h2.toggl").click(function () {
      $(this).next().slideToggle("slow");
    });

	$(".link").wrapInner("<a></a>").children("a").wrap("<noindex></noindex>").attr({href:function(){return 'http://'+$(this).text()}, rel: 'nofollow', target: '_blank'})


});
