$(function() {
	
	$('div.productFilterMenu button').click(function(e) {
		e.preventDefault();
		
		var searchFacetForm = $('#searchFacetForm');
		var styleSelection = searchFacetForm.find('select[name = categoryId]').find('option:selected').val();
		var filterSelection = "";
		
		$.each(searchFacetForm.find('select[name = filter]'), function() {
			filterSelection = filterSelection + $(this).find('option:selected').val();
		});
		
		if (searchFacetForm.find('input[name = topCategoryId]').length) {
			var topCategoryId = searchFacetForm.find('input[name = topCategoryId]').val();
									
			if (topCategoryId == styleSelection && filterSelection == "") {
				searchFacetForm.find('input[name = showAllProducts]').removeAttr('disabled');
			}
		}
		else if (searchFacetForm.find('input[name = parentCategoryId]').length) {
			var parentCategoryId = searchFacetForm.find('input[name = parentCategoryId]').val();
						
			if (parentCategoryId == styleSelection && filterSelection == "") {
				searchFacetForm.find('input[name = showAllProducts]').removeAttr('disabled');
			}
		}
		
		searchFacetForm.submit();
	});

});
