﻿$(document).ready(function(){

	$("#inner_content").each(function (i) {
		$(this).children("ul").children("li").children("ul").hide();
		$(this).children("ul").children("li").children("h3").prepend('<a class="expand">[+]</a> ');
		$(this).children("ul").children("li").children("h3").children("a.expand")
			.click(function(){
				if ($(this).text() == "[+]") {
					$(this).parent().parent().children("ul").slideDown();
					$(this).text("[-]");
				} else {
					$(this).parent().parent().children("ul").slideUp();
					$(this).text("[+]");
				}
			})
		});
	
});
