/* stripes for table */
function stripe(id) {
    var table = document.getElementById(id);
    if (! table) { return; }
    var trs = table.getElementsByTagName('tr');
    for (var i = 0; i < trs.length; i += 2) {
      trs[i].className += ' even';
    }
}

function runScripts(){
	stripe('rowswitcher');
	stripe('rowswitcher1');
	stripe('rowswitcher0');
	stripe('rowswitcher2');
	stripe('rowswitcher3');
	stripe('rowswitcher4');
	stripe('rowswitcher5');
}



