/* Jolin Yim jolin_yim@wgbh.org 03.29.11 ----------------------------------------------------*/ $(document).ready(function(){ var $li = $('#hilites li').hide(); var len = $li.length; var counter = 2; //how many items to display var randomNum; while(counter > 0) { randomNum = Math.floor(Math.random()*(len+1)); if($li.eq(randomNum).is(":hidden")) { $li.eq(randomNum).show(); counter -=1; } } });