jQuery().ready(function() {
			
	jQuery('#blog-archive-module h4').click(function () 
	{
		//if it's open then we close it, if closed we open it
		if (jQuery(this).hasClass("title-open") ) {
			
			//title attribute
			jQuery(this).removeClass('title-open');
			jQuery(this).addClass('title-closed');
			
			//associated list items
			jQuery(this).next("ul").removeClass('list-open');
			jQuery(this).next("ul").addClass('list-closed');
			
			
		} else {
			jQuery(this).removeClass('title-closed');
			jQuery(this).addClass('title-open');
			
			//associated list items
			jQuery(this).next("ul").removeClass('list-closed');
			jQuery(this).next("ul").addClass('list-open');
			
		} 
	});
		
});
