function jquery_load()
{
	$(document).ready(function()
	{
		$(".a_rubric").click(function ()
		{
			if ( $(this).find(".plusik").html() == '+' )
			{
				$(this).find(".plusik").html('-');
			}
			else
			{
				$(this).find(".plusik").html('+');
			}
			$(this).nextAll("ul").slideToggle("slow");
		});
	});
}

