function rt(){
var r_text = new Array ();
r_text[0] = "Internet traffic is expanding more than 50% per year, driven mainly by increasing use of online video.";
r_text[1] = "When the shutter closes the world opens!";
r_text[2] = "More than two-thirds of US Internet users watched 13.5 billion Internet videos during October 2009";
r_text[3] = "An image tells a thousand words";
r_text[4] = "The average length of time, per visitor, spent on text-only sites is 60 seconds. And sites with video? 6 minutes!";
r_text[5] = "What you have caught on film is captured forever... it remembers little things, long after you have forgotten everything.";
r_text[6] = "77% of Internet users have viewed online videos";
r_text[7] = "To date 68% of the people viewing videos online are between the ages of 25 and 64. And 67% of those earn middle to high income.  How many of those people are in your market?";
r_text[8] = "A photograph is usually looked at - seldom looked into.";
r_text[9] = "Video Ads to grow by 45% in 2010.";
r_text[10] = "With broadband now at 67% penetration in the UK, Web Video is a viable technology accessible to the broader audience.";
r_text[11] = "12.7 billion online videos were viewed in November 09.";
r_text[12] = "The number of online shoppers who watched retail online videos grew by 40% last year.";
r_text[13] = "100 million videos are viewed every day on You Tube alone.";
r_text[14] = "Life is like a good black and white photograph, there's black, there's white, and lots of shades in between.";
r_text[15] = "Online video viewing jumped 34% in 2009.";
var i = Math.floor(16*Math.random())
document.write(r_text[i]);
dly();
}
rt();
function dly(){
setTimeOut("rt();",3000);
}