$(document).ready(function() {
	// Hide collapsable bullets
	$('div.main-content ul li div.text-reveal').hide();

	$('div.main-content ul li div a').click(function() 
		{
		    if ($(this).parent().attr("class") == "open") {
			    $(this).parent().children("div.text-reveal").slideUp("slow");
				$(this).parent().attr("class", "");
				return false;
			}
			else {
			    $("div.main-content ul li div.open div.text-reveal").slideUp("slow");
				$("div.main-content ul li div.open").attr("class", "");
				$(this).parent().attr("class", "open");
				$(this).parent().children("div.text-reveal").slideDown("slow");
				return false;
			}
		}
	);	
});
