window.onload = colorRows;
function colorRows() {
       var myPAR = document.getElementsByTagName('p');
       for (var i=0;i<myPAR.length;i++) {
               if (i%2) {
                       myPAR[i].className = 'rowtint';
               }
       }
}

