var baseURL = "http://turystyka.org.pl/";
jQuery(function () {
	
	jQuery("input.check").addClass("button").removeClass("check");
	//jQuery("input.check_full_form").addClass("button").removeClass("check_full_form");
	jQuery("input:submit, .button").button();
	
	jQuery("div#firm_fields").hide();
	jQuery("div#firmdiv").click(function(){
		jQuery("div#firm_fields").show();
	});		
	jQuery("div#privdiv").click(function(){
		jQuery("div#firm_fields").hide();
	});	
	
	 jQuery("#check_all").click(function() 
            { 
                var checked_status = this.checked; 
                jQuery("input[name=obiekt[]]").each(function() 
                { 
                    this.checked = checked_status; 
                }); 
            }); 
	
	jQuery("p#cities").click(function()
	{
		var text = jQuery(this).html();
	});
	
	jQuery("#all_cities_show_all_link").click(function(){
		if (jQuery(this).html() == "pokaż mniej")
		{
			jQuery("#all_cities_hidden_box").hide();
			jQuery(this).html("pokaż więcej");
			jQuery(this).removeClass('fold');
		}
		else
		{
			jQuery("#all_cities_hidden_box").show();
			jQuery(this).html("pokaż mniej");
			jQuery(this).addClass('fold');
		}
		return false;
	});
});
