// THErotator.js

var strContent1 = '<a href="/4001_children_miracle_network.asp"><img src="images/0000_log_cmn.gif" alt="Children\'s Miracle Network" width="106" height="30" border="0" title="Children\'s Miracle Network"></a><br>';
strContent1 = strContent1 + '<span class="text"><br>Raising funds for hospitalized children, to date RE/MAX professionals have collectively contributed over $56 million to the cause.<br>';
strContent1 = strContent1 + '<a href="4001_children_miracle_network.asp">read more&gt;</a></span>';

var strContent2 = '<a href="/4002_quest_for_excellence.asp"><img src="images/0000_log_que.gif" alt="Quest For Excellence" width="106" height="30" border="0" title="Quest For Excellence"></a><br>';
strContent2 = strContent2 + '<span class="text"><br>RE/MAX offers Grade 12 students the opportunity to earn a $500 bursary to be used towards further education.<br>';
strContent2 = strContent2 + '<a href="4002_quest_for_excellence.asp">read more&gt;</a></span>';

var strContent3 = '<a href="/4003_give_life.asp"><img src="images/0000_log_giv.gif" alt="Give Life" width="106" height="30" border="0" title="Give Life"></a><br>';
strContent3 = strContent3 + '<span class="text"><br>Helping potential donors across Canada to make informed decisions regarding organ, tissue and bone marrow donation.<br>';
strContent3 = strContent3 + '<a href="/4003_give_life.asp">read more&gt;</a></span>';

var inter = 0;

function start(){
	THEvignette('1');
}

function THEvignette(inter){

	var where = document.getElementById('community');

	if(inter == 1){
		where.innerHTML = strContent1;
		retobj = setTimeout("THEvignette('2')",5000);
	}

	if(inter == 2){
		where.innerHTML = strContent2;
		retobj = setTimeout("THEvignette('3')",5000);
	}

	if(inter == 3){
		where.innerHTML = strContent3;
		retobj = setTimeout("THEvignette('1')",5000);
	}

}



