document.write("");
function showItems2030(total, display, isRandom)
{
if (!isRandom) return;
for (var i = 1; i <= total; i++)
{
if (document.getElementById("event-2030-"+i))
{
document.getElementById("event-2030-"+i).className += " random";
}
}
var random2030 = Math.floor(Math.random()*total+1);
for (var i = 0; i < display; i++)
{
random2030++;
if (random2030 > total)
{
random2030 = 1;
}
if (document.getElementById("event-2030-"+random2030))
{
document.getElementById("event-2030-"+random2030).style.display = "block";
}
}
}



document.write("<div id=\"pc-2030\" xmlns:xalan=\"http://xml.apache.org/xslt\">");
document.write("<div id=\"edu-il-ws-2030-141-wrapper\" class=\"edu-il-ws-2030-141-wrapper\">");
document.write("<div class=\"edu-il-ws-2030-141-content\">");
document.write("<ul id=\"content-list\"></ul>");
document.write("<div class=\"clear\"></div>");
document.write("</div>");
document.write("</div>");
document.write("</div><script type=\"text/javascript\" language=\"Javascript\">");
document.write("showItems2030(0, 3, false);");
document.write("</script>");

