// jQuery for property filter in right side bar
$(document).ready(function() {
	// submit the form if a checkbox is changed.
	$('#PropertyFilterForm .PropertyCheckbox').change(function(event) {
		$('#PropertyFilterForm').submit();
	});

	// submit the form if a select box is changed.
	$(function () {
		$('#PropertyFilterForm .PropertySelect').live("change keyup", function () {
			$('#PropertyFilterForm').submit();
		});
	});
	
	// submit the form if a list view link is clicked.
	$('#PropertyFilterForm .PropertyListView').click(function(event) {
		$('#PropertyView').val('list');
		$('#PropertyFilterForm').submit();
	});

	// submit the form if a image view link is clicked.
	$('#PropertyFilterForm .PropertyImageView').click(function(event) {
		$('#PropertyView').val('image');
		$('#PropertyFilterForm').submit();
	});
});

