function rot(e){
    return;
    /*
	var images = new Array("WePickTheHighHangingFruitToo.gif", "SometimesWeNeverTestTheWater.gif", "WeAlwaysMoveOurGoalPosts.gif", 
							"WeDontAlwaysHitTheNailOnTheHead.gif", "WeDontJustCookOnGas.gif", "WeDontJustThinkBlueSky.gif", 
							"WeGetTheSmallPictureToo.gif", "WeKeepOurEyesOnLotsOfBalls.gif"); 
	do{
		var i = Math.floor(Math.random() * images.length);
	}while(i == e); 
	document.getElementById('bg').style.backgroundImage = 'url(/kohana/media/simages/'+images[i]+')'; 
	window.setTimeout("rot("+i+")", 10000); 
    */
}
function void(n){
    void(0);
}
window.onload = rot();

