$(document).ready(function(){
	
	$("h1.blot").prepend('<span></span>');

	$("#OpenClose h2, #OpenClose h3").each(function() {
		$("#" + $(this).attr("open")).hide();
	});

	$("#OpenClose h2, #OpenClose h3").wrapInner("<span></span>").append("<img src='/_common/images/s.gif' />").wrapInner("<a></a>");
	
	$("#OpenClose h2 span, #OpenClose h2 img, #OpenClose h3 span, #OpenClose h3 img").click(function() {
		var openId = "";
		openId = $(this).parent().parent().attr("open");

		if($("#" + openId).css("display") != 'none'){
			$("#" + openId).hide('slow');
			$(this).parent().attr("class", "");
		}
		else{
			$("#" + openId).show('slow');
			$(this).parent().attr("class", "top");
		}
	});


	$('form.needs-validation').validateForm();
});

