How do I display a random set of list items, I think I have this down. Thanks!
//Count the number of li's in the object var listCount = $("li.contentBlock", obj).length;
//Generate a random number from the count of li's
var randomListNumber = Math.floor(Math.random() * listCount -1);
//Generate list of items based on the amount of li's that are present
var firstList = "<li class='contentBlock'>"+$("li:eq("+randomListNumber+")", obj).html()+"</li>";
//Target element that contains that list
var place = $("ul", obj).html();
//Combine ul container and list generate
var newPlace = firstList+place;
//Replace current ul and li with newly generated random list
$("ul", obj).html(newPlace);