/*
	Copyright 2010 by Dienstleistung Kultur
*/

function Debug ( text )
{
	if ( window.console )		console.log ( text );
}

$(document).ready
(
	function()
	{
		$("#shop_filter_form :submit").hide();

		$("#shop_filter_form select").change
		(
			function ()
			{
				$("#shop_filter_form").submit();
			}
		);

		$(".shop_merkzettel_subtable").each
		(
			function ()
			{
				var $f	= $(this).parent();

				$(":submit", $f).hide();

				$("select", $f).change
				(
					function ()
					{
						$f.submit();
					}
				);
			}
		);

	}
);

