// JavaScript Document

function stripeTables(){
	var allTags = document.getElementsByTagName("*");
	
	for(q=0;q<allTags.length;q++){
		if(!allTags[q].getAttribute("class")=="entry"){
			
		}
		if(allTags[q].getAttribute("class")=="entry"){
			var ulist = allTags[q].getElementsByTagName("ul");
			for(i=0;i<ulist.length;i++){
				var odd = false;
				var rows = ulist[i].getElementsByTagName("li");
				for(j=0;j<rows.length;j++){
					if(odd==true){
						
						rows[j].style.backgroundColor = "#CBC8B7"
						rows[j].style.padding = "5px 0px 5px"
						odd = false;
					}else{
						odd = true;	
					}
				}
			}
			
		}
	}
	
	
	
}

addLoadEvent(stripeTables);