tipPage = new Array("http://www.nerdybooks.com/images/home/ctrl-f6.gif", "http://www.nerdybooks.com/images/home/excel-alt-enter.gif", "http://www.nerdybooks.com/images/home/old-slide-view.gif", "http://www.nerdybooks.com/images/home/win-xp-show-desktop.gif")

tipPageCount = tipPage.length

function chooseTip(){
if (document.images) {
	randomPage = Math.floor((Math.random() * tipPageCount))
	document.tipGraphic.src = tipPage[randomPage]
	}
}



introText = new Array("http://www.nerdybooks.com/images/home/dump-your-manual.gif", "http://www.nerdybooks.com/images/home/get-fast-fast.gif", "http://www.nerdybooks.com/images/home/impress-your-friends.gif", "http://www.nerdybooks.com/images/home/leave-work-early.gif")

introTextCount = introText.length

function chooseText(){
if (document.images) {
	randomText = Math.floor((Math.random() * introTextCount))
	document.textGraphic.src = introText[randomText]
	}
}
