/* $Id: homepage.js 140 2009-07-16 16:25:59Z john.miller $ */
var bannerRotate = function(){
	if($('div#nav ul li').hasClass('sfhover')){
	 var timer = setTimeout("bannerRotate();",8000);
	 return false;
	}
	$('img#'+arrBanners[activeBannerIndex++]).hide();
	if(activeBannerIndex>=arrBanners.length)activeBannerIndex=0;
	$('img#'+arrBanners[activeBannerIndex]).show();
	var timer = setTimeout("bannerRotate();",8000);
	return false;
}
$(function(){
	bannerRotate();
	$('a.gallery').lightBox({fixedNavigation:true});
});
