var height;

$(window).load(function() {
	
	height = $(".resultsComparison table thead").height();
	height+=47;
	$(".resultsHeaderFrame").css("height", height+"px");
	
	$(".resultsComparison table tbody tr:nth-child(odd)").addClass("striped");
	
	$("td:first",".resultsComparison table tbody tr:nth-child(odd)").addClass("first");
	$("td:last",".resultsComparison table tbody tr:nth-child(odd)").addClass("last");

	if ($("tr:last").attr("class") == "") {
		$("tr:last td",".resultsComparison table tbody").addClass("borderNone");
	} 
	
});