$(document).ready
(

	function (event)
	{
		template_url= $('#jq_template_url').val();

		$(document).pngFix();

		$('#left-column form input[type=submit],.home-spot-text input[type=submit]').click
		(
			function (event)
			{
				$(this).fadeOut('fast');
				$(this).parent().find('h2').html('&nbsp;');
			}
		);
	}

);

