// JavaScript Document
// Call the liveFilter jQuery function.
$(document).ready(function(){
	// Since Javascript is good, show the form.
	$('form#rangeFilter').show();
	// In case the page is a refresh, filter based on whatever is in the field.
	filterRanges();
	filterFeedback();
	// Filter when user enters text into the form field.
	$('input#filterText').keyup(function(){
		filterRanges();
		filterFeedback();	
	});
});