var boxmain = new Array('smesi_seman', 'bhz', 'keramika', 'torf', 'denmark', 'plast', 'gera');
var show_panel = '';
function showbox(p, swap)
{
	if(swap == 0)
	{
		document.getElementById('top_ul').style.display = 'block';
		document.getElementById('bottom_ul').style.display = 'none';
	}
	else
	{
		document.getElementById('top_ul').style.display = 'none';
		document.getElementById('bottom_ul').style.display = 'block';
	}
	var i, e, t;
	if (typeof(p) == 'string')
	{
		show_panel = p;
	}
	for (i = 0; i < boxmain.length; i++)
	{
		e = document.getElementById(boxmain[i]+ '-t');
		t = document.getElementById(boxmain[i]);
		if (e)
		{
			if (boxmain[i] == show_panel)
			{
				if(e)
				{
					e.style.display = 'block';
				}
				if (t)
				{
					t.className = 'active';
				}
			}
			else
			{
				e.style.display = 'none';
				if (t)
				{
					t.className = '';
				}
			}
		}
	}
} 

$(document).ready(function()
{
	$(".toggler").click(function()
	{
		$("#"+$(this).attr("forid")).toggle();
	});
});

