$(document).ready(function(){
	$(".item").each(function(){
		$(this).find("p:last").css({
			paddingBottom: "5px"
		});
		
		var t = $(this).find("strong:first").text();
		$(this).find("strong:first").remove();
		$(this).find("p:first").prepend("<strong>"+t+"</strong>");
		
	});
	$("#sppSearchTerm").change(function(){
		window.location = "/spp/search-results.asp?industry_id=" + $(this).val();
	});
})
