$(document).ready(function() {

	$("input:password").chromaHash({bars: 3, salt:"7be82b35cb0199120eea35a4507c9acf", minimum:6});

	$('.contactbox:odd').addClass('alt');

	// fadeout flash messages on click
	$('.cancel').click(function(){
		$(this).parent().slideToggle();
		return false;
	});
	
	//open new window for ext links
	$("a").filter(function() {
	    return this.hostname && this.hostname !== location.hostname;
	}).attr('target', '_blank');
	
	
	// fade out good flash messages after 3 seconds
	$('.success').animate({opacity: 1.0}, 3000).slideToggle();

	//table of contents
  //  $("#toc").append('<p>In this article:</p>')
//	$("#content h3").after("<ul id=\"toc\"></ul>");
	$("#about-human-trafficking #sidebar,#support #sidebar,#about-act #sidebar").prepend("<h3>On this Page:</h3><ul id=\"toc\"></ul>");
	
    $("#content h3, #content h4, #content h5").each(function(i) {
        var current = $(this);
        current.attr("id", "title" + i);

        $("#toc").append("<li><a id='link" + i + "' href='#title" + i + "' title='" + current.attr("tagName") + "'>" + current.html() + "</a></li>");
    });

});

