function tableRuler()
{
    var rows = $('.recordstable tbody tr');
    $(rows).each(function(){
        $(this).mouseover(function(){
            $(this).addClass('over');
        });
        $(this).mouseout(function(){
            $(this).removeClass('over');
        });
    });
}

//Call Function on body onload
$(document).ready(function(){
    tableRuler();
    formValidator.init();
    $('#carSearch select').change(function(){window.location = this.value;});
});
