// JavaScript Document

/* Gives an alternate color to every other row in Product Info Table */
 
if (document.getElementById('product-info-table')){
    var pit=document.getElementById('product-info-table');
    var rows=pit.getElementsByTagName('tr');
    for (var i=0;i<rows.length;i++){
        if (i%2==0){
            rows[i].style.background='#ECECEC';          
        }
    }    
}

