var jsReady = false;
function isReady() {
	return jsReady;
}
function showAltContent(pageIndex) {
	$("#RotatorAltContent ul").hide();
	$("#RotatorAltContent ul").eq(pageIndex).show();
}
function sendPageIndex(pageIndex) {
	showAltContent(pageIndex);
	$("#SelbyRotator")[0].sendPageIndex(pageIndex);
}
function sendHome() {
	$("#SelbyRotator")[0].sendHome();
}
$(document).ready(function(){
	jsReady = true;
	showAltContent(thisPageIndex);
	$("#secondaryNav li").mouseover(function(){
		var pageIndex = $("#secondaryNav li").index(this) + 1;
		sendPageIndex(pageIndex);
	});
	$("#secondaryNav ul").mouseout(function(){
		sendHome();
	});
	$("#header, .leftlogos").mouseover(function(){
		showAltContent(thisPageIndex);
	});
});
