jQuery.preloadImages=function(){for(var i=0;i<arguments.length;i++){jQuery("<img>").attr("src",arguments[i]);}};header_image_object={index:1,lindex:1,header_images:["balloonglow.jpg","aawfireworks.jpg","middfest1.jpg","firemum.jpg","roof2.jpg","vetmem.jpg","spsplash.jpg","symphony.jpg","bikerace.jpg"],inc_index:function(){this.index++;if(this.index==this.header_images.length){this.index=0;}},get_lindex:function(){return this.lindex;},set_lindex:function(idx){this.lindex=idx;},get_random:function(){var newIdx=-1;var oldIdx=header_image_object.get_lindex();do{newIdx=Math.floor(Math.random()*header_image_object.header_images.length);}while(newIdx==oldIdx)header_image_object.set_lindex(newIdx);return newIdx;},get_index:function(){return this.index;},pre_load:function(){$.preloadImages(header_image_object.header_images);},swap:function(){var imgIdx=header_image_object.get_random();$("#rotate_image").fadeOut(1000,function(){$("#rotate_image").attr("src","/assets/images/header/banners/"+header_image_object.header_images[imgIdx]);$("#rotate_image").fadeIn(1000);});}};jQuery.preloadImages=function(){var a=(typeof arguments[0]=='object')?arguments[0]:arguments;for(var i=a.length-1;i>0;i--){jQuery("<img>").attr("src",a[i]);}};header_image_object.pre_load();setInterval(header_image_object.swap,8000);