var fcontent=new Array();
// Printing 10
/*
Fading Scroller- By DynamicDrive.com
For full source code, 100's more DHTML scripts, and TOS,
visit http://www.dynamicdrive.com
*/
var delay=8000; //set delay between message change (in miliseconds)
fcontent[0]="Get Me Down Under
This social-networking community is aimed at anyone interested in holidaying, working or living in Australia or New Zealand.";
fcontent[1]="Joe Browns
Joe Browns, the web-based casual-clothing store, has had a makeover to make it much easier to navigate, browse and buy from.";
fcontent[2]="Touchnote
Touchnote lets you upload pictures to create unique photo cards containing personalised messages for all types of occasion.";
fcontent[3]="Kidiroo
The brainchild of two mums, Kidiroo is an online shop selling presents for children under five that are a 'little different'.";
fcontent[4]="FindHow
FindHow is a new 'how-to' site that offers quality instructions on thousands of topics, ranging from the practical to the absurd.";
fcontent[5]="Digi-zines
Digital newsagent Digi-zines has expanded for 2009, now offering access to more than 130 free magazines and newspapers.";
fcontent[6]="Financial Times
The Financial Times, one of the few newspapers to have benefited from the credit crunch, has revamped its online arm.";
fcontent[7]="Eco Boxes
This site provides you with recycled cardboard boxes you can use to move house and then reuses them once they're finished with.";
fcontent[8]="8tracks
This worthy successor to the late, much-lamented Muxtape lets you create you own MP3 music mix and publish it on the web.";
fcontent[9]="Holiday Extras
This relaunched site takes the stress and expense out of arranging travel extras by letting you sort everything out beforehand.";
begintag='Latest Website Reviews: '
closetag=''
var fwidth=470 //set scroller width
var fheight=18 //set scroller height
///No need to edit below this line/////////////////
var ie4=document.all&&!document.getElementById
var ns4=document.layers
var DOM2=document.getElementById
var faderdelay=0
var index=0
if (DOM2) {
faderdelay=1
}
//function to change content
function changecontent(){
if (index>=fcontent.length)
index=0
if (DOM2){
document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag
}
else if (ie4)
{
document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag
}
else if (ns4){
document.fscrollerns.document.fscrollerns_sub.document.write(begintag+fcontent[index]+closetag)
document.fscrollerns.document.fscrollerns_sub.document.close()
}
index++
if(fcontent.length>1) {
setTimeout("changecontent()",delay+faderdelay)
}
}
// colorfade() partially by Marcio Galli for Netscape Communications. ////////////
// Modified by Dynamicdrive.com
frame=20;
hex=0 // Initial color value.
function colorfade() {
// 20 frames fading process
if(frame>0) {
hex+=12; // increase color value
document.getElementById("fscroller").style.color="rgb("+hex+","+hex+","+hex+")"; // Set color value.
frame--;
setTimeout("colorfade()",20);
}
else{
document.getElementById("fscroller").style.color="rgb(255,255,255)";
frame=20;
hex=255
}
}
if (ie4||DOM2)
document.write('