$(document).ready(function()
{
	if ($(".byparamsbtn").length)
	{
		$(".byparamsbtn").click(function()
		{
			if ($("form.filter:visible").length)
			{
				$("form.filter").hide();
				$(this).find('span').html(' ▼');
			}
			else
			{
				$("form.filter").show();
				$(this).find('span').html(' ▲');
			}
		});
	}
});
