var stories=new Array();stories[0]={path:'dr-black',name:'Dr. Black Dental Care',owner:'Dr. Brian Black',title:'Owner, Dr. Black Dental Care'};stories[1]={path:'pure-energy',name:'Pure Energy Dance Studio',owner:'Jordan Murphy',title:'Owner, Pure Energy Dance'};stories[2]={path:'fat-burger',name:'Fat Burger',owner:'Fari Estockari',title:'Owner, Fat Burger Grill'};function loadSuccess(story){var $fig=$('#promoBlock>figure');var theIMG='<img src="/images/clients/'+stories[story].path+'/success-story.jpg" alt="'+stories[story].name+'" />';var theCap='<div id="figcaption" class="clearfix"><span>'+stories[story].owner+' <em> — '+stories[story].title+'</em></span>'+'<a href="/success-stories.php">Read Success Story</a></div>';$fig.fadeOut('fast',function(){$fig.empty().append(theIMG).append(theCap).fadeIn('fast');});}
$(function(){var r=Math.floor(Math.random()*3);loadSuccess(r);});

