$(document).ready(function(){
	$("tr:has(td)").hover(
		function(){
			$(this).find("a").css("color","rgb(172,38,27)");
		},
		function(){
			$(this).find("a").css("color","rgb(51,51,51)");
		}
	).click(function(){
		if ( editMode == false){
			var h = $(this).find("a").attr("href");
			window.location = h;
		}
	}).filter(":odd").css("background","rgb(217,217,217)");
		$("#sppSearchTerm").change(function(){
		window.location = "/spp/search-results.asp?industry_id=" + $(this).val();
	});
})