$(function() {
	$(".main_link").click(function(e) {
		var id = $(this).attr("category");
		if( id != null ) {
			if( $(this).attr("href") == "#" )
				e.preventDefault();
			$("div[parent='"+id+"']").toggle();
		}
	});
});
