function getObj(id) {
	if (typeof id != "string") return id;  
	else return document.getElementById(id);
}

function imgSwitch(imgSrc) {
	document.images['imgSwitcherImg'].src=imgSrc;
}

function imgSwitcher(imgArray) {
	newImg = new Image(262,181); 
	imgSrc = imgArray[Math.round(Math.random()*imgArray.length)];
	newImg.src = imgSrc;
	setTimeout('imgSwitch("'+imgSrc+'")',5000);
}
