var picnums = 6240;
var news = new Array();
news[1] = "I am the best!";
news[2] = "EBR voters happy being fat";
news[3] = "Fancy a nice hot cup of tea?";
news[4] = "Naughty Girls are more fun!";
var newsall = "I am the best!
EBR voters happy being fat
Fancy a nice hot cup of tea?
Naughty Girls are more fun!
Famous misquotes not recognized by EBR voters.
No clear way to say goodbye. Anything goes.
Fastest car always wins
Unanimous decision to rerun Race Game
Latest box office hit - Billy Goats Gruff
Put simply - I am the best! and I lead the rest!
Rag considers options for next job move
EBR voters baffled by brain teaser
Rag wins weekly NASCAR race but Mr O retains lead in standings
Cheddar is the most favored cheese
Birthday boy gets lots of presents, but gets kicked in teeth
William kicks football, man misses basket (see William Soccer video 3)
EBR Voters want to see cock
Mr O retains lead in NASCAR game sticking with his original picks
Mr O wins week to extend lead
Gray whales spotted off coast at Point Reyes
Videos of William riding his bike posted
Voters can't decide how much Virgin flight into outer space is worth
Videos of William riding his bike posted
"
var timeinterval = 100;
var pictime = 0;
var photovideoswitch = 1;
var newstime = 0;
var newsitem = 1;
function runner(){
photoswap();
if(window.newstime==0){
newsswap();
}
window.pictime++;
window.newstime++;
if(window.newstime==40){
window.newstime=0;
}
setTimeout('runner()',window.timeinterval);
}
function photoswap(){
if (window.pictime == 35){
window.item = Math.round(Math.random()*(window.picnums-1));
document.getElementById('photoimage').src = "/library/picviewer.php?id=" + window.item;
window.pictime=0;
}
}
function openbig(){
window.open("/library/picviewerbig.php?id=" + window.item,"BigPicture","resizeable=yes");
}
function newsswap(){
window.newsitem++;
if(window.newsitem==5){
window.newsitem=1;
}
document.getElementById("newsholder").innerHTML = "
Show All
" } function showallnews(){ document.getElementById('allheadlines').innerHTML = window.newsall; document.getElementById('allheadlinescontainer').style.visibility = "visible"; }