﻿function doAllTables(){
    $("table.data tr:not(.footer)").hover(
        function(){
            $(this).addClass("rowhover");
            $(this).children("td.highlight").addClass("rowhover");
        },
        function(){
            $(this).removeClass("rowhover");
            $(this).children("td.highlight").removeClass("rowhover");
        }
    );
}

jQuery(document).ready(function() {
    $.preloadCssImages();
    jQuery('#cpImages').jcarousel();
    doAllTables();
});
