$(document).ready(function(){
	$('#add_comment').click(function(){
		$(this).next().next().show();
	});	
	
	$('#search_submit').click(function(){
		$('#search_form').submit();
	});
	
	$('#search_form').submit(function(){
		var action = $(this).attr('action');
		var var1 = $('input[name=wyszukaj]').val() || '_';
		var var2 = $('select[name=kategoria]').val();

		$(this).attr('action',action+'/'+encodeURI(var2)+'/?a=a&'+encodeURI(var1));
		return true;
	});

	$('#dodaj_komentarz').click(function(){
		$('#comment_form_fieldset').show();
		$(this).hide();
		
		return false;
	});
	
	$('#submit_comment_form').click(function(){
		
		$.ajax({
		   type: "POST",
		   url: "/pl/obiekty/dodaj_komentarz",
		   data: $('#comment_form').serialize(),
		   success: function(odp){
		     	$('#comment_form').remove();
			 	$('#comment_form_fieldset').html('<p>' + odp + '</p>');
		   }
		 });
		
		return false;
	});
	
	$('.usun').click(function(){
		return window.confirm('Czy na pewno chcesz usunąć ten komentarz?');
	});
});


