var fcontent=new Array();
var icontent=0;
fcontent[0]="<br /><br />I was definitely skeptical about Herberex, but it has worked great!  My sex life is amazing again, thanks to Herberex.<br><b>- Andy E., age 36, Missouri</b>";
fcontent[1]="<br />Herberex has given me back my life!  I ordered Herberex as a last-ditch effort when nothing else worked for me, and I'm so very glad I did. I wish I had found this product first and saved all the time and money I wasted on other products!  I can't rave enough about Herberex, and I'll definitely be recommending it to my friends. <br><b>- Jim K., age 48, Kentucky</b>";
fcontent[2]="<br /><br />I haven't had sex like this in 20 years -- this product is by far the best on the market.  I didn't think it would work for me, but it far exceeded my expectations!<br><b>- Doug R., age 47, Washington</b>";
/*fcontent[3]="<img src='/stores/herberex.us/images/herberex_img.jpg' alt='' />";*/

$(document).ready(function () {
  changecontent();
});

function changecontent()
{
  icontent++;
  if (icontent>=fcontent.length) icontent=0;
  $("#fscroller").fadeOut("slow", 
    function() {
      $("#fscroller").html(fcontent[icontent]);
      $("#fscroller").fadeIn("slow");
    }
  );
  setTimeout("changecontent()", 5000);
} 