// When the listing form is submitted, if a new category was not typed in, use
// the selected category.

$(document).ready( function() {
	/*
	$('#categorySelector').change( function ()
	{
		var newloc = window.location.href.replace(/(&page=\d+|&category=\w+)/g, '');
		
		if ($(this).val() != '')
			newloc = newloc + '&category=' + $(this).val();

		window.location.href = newloc;
	});
	*/

	$('#areaSelector').change( function ()
	{
		var newloc = window.location.href.replace(/(&page=\d+|&area=([^&])*)/g, '');
		
		if ($(this).val() != '')
			newloc = newloc + '&area=' + $(this).val();

		window.location.href = newloc;
	});
});
