
$(document).ready(function(){
	$('.bullet_text').each( function() {
		$(this).hide();
		});
	$('.bullet_button').each( function() {		
		
		$(this).click(function () {
			var id = 'div#' + $(this).attr('id');
			if($(id).css('display') == "none"){
		      $(id).show("fold", {});
			}else{
			  $(id).hide("fold", {});
			}
		 });
	});
});


