$thisBkgd='img/navconceptfull.gif';
function mouseOver($thisId, $thisPosition)
{
	if(document.getElementById) {
		document.getElementById($thisId).style.background='transparent url('+$thisBkgd+') no-repeat '+$thisPosition;
	}
}

function mouseOut($thisId)
{
	if(document.getElementById) {
		document.getElementById($thisId).style.backgroundImage='';
	}
}

function externalLinks()
{
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "newwin") {
			anchor.target = "_blank";
		}
	}
}
window.onload = externalLinks;

var $contentArray=new Array();
$contentArray[0]='<img src="images/obu_banner_ani.gif" style="background: #fff; border: 0px; margin-top: -5px; margin-left: -3px; margin-right: -3px; padding-bottom: -1px" width="607" height="100">\r\n';
$contentArray[1]='<cite class="quote" style="font:1.1em verdana, sans-serif;">The PowerStart Onboarding Process is now available in two online versions:<ul><li>The coach-supported process for senior executives</li><li>The self-study Onboarding University for managers up through VP</li></ul></cite>\r\n';

//$contentArray[0]='<cite class="quote">"I simply could not have accomplished what I did, as soon as I did, without the PowerStart Onboarding process.  It positioned me for success."</cite>\r\n<p class="credit">CEO ($400 million credit union)</p>\r\n';
//$contentArray[1]='<cite class="quote">"My Onboarding coach provided a level of confidential counsel and candid feedback you just do not get from anyone else - boss, colleagues, or staff."</pcite>\r\n<p class="credit"> CIO ($2 billion credit union)</p>\r\n';
//$contentArray[2]='<cite class="quote">"We have a well developed process for hiring and promoting senior managers.  Now, with PowerStart we have a highly effective support process to ensure their success." </cite>\r\n<p class="credit">CEO ($650 million credit union)</p>\r\n';
//$contentArray[3]='<cite class="quote">"When we recruit or promote someone to our senior management team that is a significant investment.  I view the PowerStart process as protecting that investment." </cite>\r\n<p class="credit">CEO ($320 million credit union)</p>\r\n';

$loop = 0;

function rotateContent () {
	if (document.getElementById) {
		/*$rand=Math.floor(Math.random()*$contentArray.length);
		document.getElementById('homepagequotes').innerHTML=$contentArray[$rand];*/
		$loop=($loop == $contentArray.length) ? 0 : $loop;
		document.getElementById('homepagequotes').innerHTML=$contentArray[$loop];
		$loop++;
		$rotateTimeout = setTimeout('rotateContent()', 6000);
	}
}