﻿$(document).ready(function(){

	if ($('#highlight-word').html() != "") {
		$("#tblResults td").each(function() { $.highlight(this, $('#highlight-word').html()); });
		//$.highlight($('tblResults'), $('#highlight-word').html());
	}
	
	$("#tblResults tbody tr:odd").addClass("alt");
	
	$("#tblResults tbody tr").mouseover (function () {
		$(this).addClass("over");
	});
	
		$("#tblResults tbody tr").mouseout (function () {
		$(this).removeClass("over");
	});
	
});