﻿
    $(document).ready(function(){  
    	// basic cell style
        $("table.table-header-only tr td").addClass("table-cell-basic");
        $("table.table-rows-header tr td").addClass("table-cell-basic");
        $("table.table-rows-only tr td").addClass("table-cell-basic");
        // alternating rows
        $("table.table-rows-header tr:even td").addClass("table-cell-even"); 
        $("table.table-rows-header tr:odd td").addClass("table-cell-odd");
        $("table.table-rows-only tr:even td").addClass("table-cell-even"); 
        $("table.table-rows-only tr:odd td").addClass("table-cell-odd");
        // header row
        $("table.table-header-only tr:first-child td").addClass("table-cell-header");
        $("table.table-rows-header tr:first-child td").addClass("table-cell-header"); 
    }); 