<!--
function randomImage()
{
	var num = 0;

	var images = new Array();
	images[0] = "subh-apples.jpg";
	images[1] = "subh-blueberries.jpg";
	images[2] = "subh-peppers.jpg";
	images[3] = "subh-radish.jpg";
	
	num = Math.floor(Math.random()*4);
	//document.getElementById('sub_image').src = "images/"+images[num];
	document.getElementById('logo').innerHTML = '<img src="images/'+images[num]+'" id="sub_image" />';	
	//window.alert(document.getElementById('sub_image').src);
}

function randomStaff()
{
	var snum = 0;

	var simages = new Array();
	simages[0] = "sfav1.jpg";
	simages[1] = "sfav2.jpg";
	simages[2] = "sfav3.jpg";
	simages[3] = "sfav4.jpg";
	
	snum = Math.floor(Math.random()*4);
	//document.getElementById('sub_image').src = "images/"+images[num];
	document.getElementById('staff').innerHTML = '<img src="images/'+simages[snum]+'" id="staff_image" />';	
	//window.alert(document.getElementById('staff_image').src);
}



function onloadRandom() { 
randomImage();
randomStaff();
 } 
//-->

