
;(function($) {
	$.fn.checkAssociated = function( associatedSelector ) {
		this.each(function(){
			$(this).click(function() {
				$( associatedSelector ).attr("checked", this.checked);
			});
		});
	}
})(jQuery);


$(document).ready(function(){
	$(":checkbox").attr("checked", false);							// clear all checkboxes

	$("input#clearAllType").checkAssociated( ".lodgingTypeCheckboxes"); 			// default "lodging type" is "all checked"

	$("input#clearAllLocation").checkAssociated( ".lodgingLocationCheckboxes" );		// default "lodging location" is "all checked"

	//$("#atoz").attr("checked", false);
});

