$(document).ready(function() {		
		var buttons = $("#clearanceFacet input");
		
		for(i = 0; i < buttons.length; i++)
		{		
			var theButton = $(buttons[i]);
			
			theButton.click(function(){
				if($(this).parent().attr("href") != "javascript:void(0);")
				{
					var targLink = "http://" + location.host;				
					targLink += $(this).parent().attr("href");			
					location.href = targLink;			
				}
			});
		}		
	})