/* Transitions images in a header image box - Tanner Stokes - www.tannr.com */
function finalizeImages(){var visibleImgs=$('div.photobox-image img:visible');if(visibleImgs.length==0){clearInterval(finalizeInterval);}else{var random=Math.floor(Math.random()*visibleImgs.length);var currentImg=$(visibleImgs[random]);$(currentImg).fadeOut(1000);}}
$(document).ready(function(){var photoBoxDivs=$('div.photobox-image');$(photoBoxDivs).each(function(){$(this).css('background-image',"url('"+$("img",this).attr('src').replace(".jpg","_back.jpg")+"')");});finalizeInterval=setInterval("finalizeImages()",4000);});
