// JavaScript Documentimages = Array();var fade_interval = 2;var rotate_interval = 8000;var pointer = 0;//images.push(Array("images/ad-billpay.jpg","Sign up for bill pay today!","http://gateway.fundsxpress.com/CCBAA/disclosures.htm",null,null)); // default image//images.push(Array("images/andalusia-masthead.jpg","Andalusia Branch","locations.htm",null,null));//images.push(Array("images/ad-fingertips.jpg","Sign up for internet banking today!","http://gateway.fundsxpress.com/CCBAA/disclosures.htm",null,null));//images.push(Array("images/opp-masthead.jpg","Opp Branch","locations.htm",null,null));//images.push(Array("images/ad-stamps.jpg","Sign up for bill pay today!","http://gateway.fundsxpress.com/CCBAA/disclosures.htm",null,null));//images.push(Array("images/crestview-masthead.jpg","Crestview Branch","locations.htm",null,null));images.push(Array("images/ads/masthead-mobile.jpg","Bank on the go!","mobile-faq.htm",null,null));images.push(Array("images/ads/masthead-green.jpg","Now it's easy being green...","online-banking.htm",null,null));images.push(Array("images/ads/masthead-comm-svc.jpg","With online commercial services, concentrate on what matters...your business!","online-banking.htm",null,null));function slide_show(pos) {	pos++;	if (pos==images.length) pos = 0;			// crossfade(elementbyid, new image url, new alt text);	crossfade(document.getElementById('animation'), images[pos][0], fade_interval, images[pos][1]);	pointer = pos;	next = window.setTimeout("slide_show("+pos+");", rotate_interval);	}function RotateLink() {		if (images[pointer][2]!=null) HREF(images[pointer][2],images[pointer][3],images[pointer][4]);		}	function init() {	seed = (images.length);	pos = Math.floor(Math.random()*seed);	document.getElementById('animation').src = images[pos][0];	pointer = pos;	setTimeout("slide_show("+pos+");", rotate_interval);	}init();            