// Animated toggle for Blog Archive & Blogroll Navigation 

$(document).ready(function(){

	//Hide (Collapse) the toggle containers on load
	$(".toggle_ul").hide();

	//Switch the "Open" and "Close" state per click
	$(".toggle_title").toggle(function(){
		$(this).addClass("active");
		}, function () {
		$(this).removeClass("active");
	});

	//Slide up and down on click
	$(".toggle_title").click(function(){
		$(this).next("..toggle_ul").slideToggle("fast");
	});
	
	//$("#toggle_head").click();

});
