
//downloads.js

    var zebra = function(ZebraULID){
                    var strips = document.getElementById(ZebraULID).getElementsByTagName('li');
                    for(var i=0, j=strips.length; i < j ; i++){
                        strips[i].onmouseover = function(){
                            //alert(this.tagName);
                            this.style.backgroundColor = "#E6E8E9";
                            //alert(this.style.backgroundColor);
                            //this.setAttribute('backgroundColor',"#0f0");
                        }

                        strips[i].onmouseout = function(){
                            this.style.backgroundColor= "#ffffff";
                        }
                    }
    
                    strips = null;                    
    }


    window.onload = function(){
            zebra('pdfReports');
    }

