var fcontent=new Array();
var icontent=0;
fcontent[0]="<br /><br />I was skeptical, yet after taking just 1 of the capsules, I was surprised that I was firm the entire weekend!<br><b>- Josh M., age 46, California</b>";
fcontent[1]="I have to say that Stiff Nights gave me the confidence I had when I was a teenager. It has truly put a ZING in my step. I had the best 60 hours of sex with my wife while using the product. We had sex 8 times this weekend. I've never done that since my college days. What I liked most about the experience is that she was satisfied more than ever. This feeling is addicting...<br><b>- James R., age 35, New York</b>";
fcontent[2]="<br /><br />What is in this stuff? I haven't had sex like this in 20 years. Thanks!!<br><b>- Robert P., age 49, Florida</b>";
fcontent[3]="<img src='/stores/mystiffnights.com/images/stiffnights30pills.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);
} 