﻿
$(document).ready(function() {

    $('table.hoverhighlight tr td').parent('tr').hover(
 		function() {
 		    $(this).css("background-color", "#f8f5ef");
 		},
 		function() {
 		    $(this).css("background-color", "transparent");
 		}
 	)
        
});
