// CAREIF AD Rotater JavaScript Document

var colads = new Array(); // array of column content
var _interval = 8000; // in seconds x 1000
var _curindex = 0; // currently active array index

colads[0] = '<a href="http://www.achieversunion.com" target="_blank"><img src="images/home_achievers_union.jpg" border="0"></a>';
colads[1] = '<a href="services.php"><img src="images/home_careif_do_for_me.jpg" border="0"></a>';
colads[2] = '<a href="opportunities.php"><img src="images/home_how_do_i_invest.jpg" border="0"></a>';
colads[3] = '<a href="#" onclick="window.open(\'buybackja.htm\',\'buyback\',\'toolbar=no, location=no, menubar=no, status=no, directories=no, scrollbars=yes, width=600, height=600, resizable=yes\');"><img src="images/home_buy_back_ja.jpg" border="0"></a>';
colads[4] = '<a href="developments.php"><img src="images/home_in_search_of_paradise.jpg" border="0"></a>';
colads[5] = '<a href="blogs.php"><img src="images/home_express_yourself.jpg" border="0"></a>';
colads[6] = '<a href="http://www.ricja.com" target="_blank"><img src="images/home_3_steps.jpg" border="0"></a>';
colads[7] = '<img src="images/home_inside_real_estate.jpg">';

if(_curindex == 0)
	document.getElementById("rotatingAds").innerHTML = colads[_curindex];
							
function updateADS()
{
	document.getElementById("rotatingAds").innerHTML = colads[_curindex];
	
	if(_curindex == (colads.length - 1))
		_curindex = 0;
	else
		_curindex++;
}

setInterval("updateADS();", _interval);