$(document).ready(function(){
	var comp = ' ';
	comp = window.top.location + '';
	comp = comp.toLowerCase();
	if(comp.indexOf("hytempacm") == -1){
		$('body').attr('alternate','0');
		$('.tbl-product-specs').find('td').each(function(i, el) {
			$(this).removeClass('row-odd');
		});
		$('.tbl-product-specs').find('tr').each(function(i, el) {
			var tr = $(this);
			var inputEl = $(el).children().get(0);
			var cellCount = $(this).children('th').length;
			if (cellCount > 0){
				$('body').attr('alternate','0');
				$(this).removeClass('row-odd');
			} else {
				if ($('body').attr('alternate') == '0'){
					$(this).removeClass('row-odd');
					$('body').attr('alternate','1');
				} else {
					$(this).addClass('row-odd');
					$('body').attr('alternate','0');
				}
			}
		});
	}
});
