// JavaScript Document

itop = '/facguide/design/images/top'+Math.ceil(Math.random()*6)+'.jpg';
bottom = '/facguide/design/images/bottom'+Math.ceil(Math.random()*3)+'.jpg';
imgTop = new Image();
imgBottom = new Image();
imgTop.src = itop;
imgBottom.src = bottom;

function chooseImages(){
	document.getElementById('top').src=itop;
	document.getElementById('content').style.backgroundImage='url('+bottom+')';
}
