$(document).ready(function() { //javascript here will load after the document is ready
	
	//gives all tables with the class 'stripeTable' zebra-striped rows
	$(".stripeTable tr:nth-child(even)").css("background-color", "#D9DEDE");
	
	//gives all tables with the class 'stripeList' zebra-striped rows
	$(".stripeList li:nth-child(even)").css("background-color", "#D9DEDE");
	
	//zebra stripes paragraphs
	$("#stripeParagraphs p:nth-child(odd)").css("background-color", "#F0EDDA");
	
});