$(document).ready(function(){
	$(".item:has(.image)").each(function(){
		$(this).children(".copy").css({
			width: "415px"
		});
	});
	$(".item:first").css({background: "transparent"})
	$("strong:contains(':')").css({
		color: "rgb(172,38,27)",
		fontSize: "0.85em",
		fontWeight: "bold",
		textTransform: "uppercase"
	});
	$("#sppSearchTerm").change(function(){
		window.location = "/spp/search-results.asp?industry_id=" + $(this).val();
	});
});