Thanks Scott, I actually modified the code you provided for me a little to create the desired effect:
previous code:
$("ul ").each(function() {
$(this).find("li:nth-child(4n+2)", "li:nth-child(4n
+3)").addClass("color");
});
modified code:
$('ul').each(function() {
$(this).find("li:nth-child(4n+3)").addClass('color');
$(this).find("li:nth-child(4n+2)", "li:nth-child(4n+3)").addClass
('color');
});
Thanks for the help Dude, I appreciate it

