// loading imgs into cache
/*var coa = new Image();
coa.src = "coach.gif";
var coa1 = new Image();
coa1.src = "coach1.gif";
var pla = new Image();
pla.src = "player.gif";
var pla1 = new Image();
pla1.src = "player1.gif";*/

baseurl = "http://acecoach.com/media/";

//on window load
window.onload = function(){
	if (page==1){
	//	getValue('test', 'Game-Based Approach information <br />for the 21st Century Coach');
		document["coa"].src = baseurl + "img/coach1.gif";
		document["pla"].src = baseurl + "img/player.gif";
	} else if (page==2){
	//	getValue('test', 'Game-Based Approach tips and <br />articles for the 21st Century Player');
		document["coa"].src = baseurl + "img/coach.gif";
		document["pla"].src = baseurl + "img/player1.gif";
	}
}
//define functions
function getValue(id,text)
{
	var x=document.getElementById(id)
	x.innerHTML = text;
}
function rollova(ova){
	if (ova==1){
//	getValue('test', 'Game-Based Approach information <br />for the 21st Century Coach');
		document["coa"].src = baseurl + "img/coach1.gif";
		document["pla"].src = baseurl + "img/player.gif";
	} else if (ova==2){
//	getValue('test', 'Game-Based Approach tips and <br />articles for the 21st Century Player');
		document["coa"].src = baseurl + "img/coach.gif";
		document["pla"].src = baseurl + "img/player1.gif";
	}
}
function rollout(){
	if (page==1){
//	getValue('test', 'Game-Based Approach information <br />for the 21st Century Coach');
		document["coa"].src = baseurl + "img/coach1.gif";
		document["pla"].src = baseurl + "img/player.gif";
	} else if (page==2){
//		getValue('test', 'Game-Based Approach tips and <br />articles for the 21st Century Player');
		document["coa"].src = baseurl + "img/coach.gif";
		document["pla"].src = baseurl + "img/player1.gif";
	}
}
	

	
