/*
Fading Scroller- By DynamicDrive.com
For full source code, 100's more DHTML scripts, and TOS,
visit http://www.dynamicdrive.com
*/

var delay=7000 //set delay between message change (in miliseconds)
var fcontent=new Array()
begintag='<font face="verdana" size=2>' //set opening tag, such as font declarations

fcontent[0]="<strong>Now Technologies</strong>, (NT) an Australian technology company has designed the worlds first pervasive entertainment system.<BR><BR>NTs system distributes the highest quality entertainment services, anywhere on demand.<br><br><a href=http://www.nowtechnologies.com.au/ class=blacklink target=top>Now Technologies</a>"
fcontent[1]="<strong>Wind Australia</strong><br><br>is dedicated to changing your business culture - how you work together for greater productivity and the bottom line of profitability.<br><br><a href=http://www.windaustralia.com/ class=blacklink target=top>windaustralia.com</a>"
fcontent[2]="<strong>Superior Tender Services</strong> (STS)<br><br>are in the business of assisting your business in the preparation of highly professional and effective proposals, bids and tenders.<br><br><a href=http://www.superiortender.com/ class=blacklink target=top>superiortender.com</a>"
fcontent[3]="<strong>eBiz-Nous</strong><br><br>is an IT company that supplies consulting, custom application development and integration services.<br><br><a href=http://www.ebiznous.com.au/ class=blacklink target=top>ebiznous.com.au</a>"
fcontent[4]="<strong>Enviro Building Solutions</strong><br><br>offer solutions for one press, multi-action audio/visual, access and environmental media in conference rooms, board rooms, training centres and custom homes.<br><br><a href=http://www.envirobuildingsolutions.com.au/ class=blacklink target=top>www.enviro.cc</a>"
fcontent[5]="<strong>the Ganymede group</strong><br><br>Providing exceptional Administration, Tender, and I.T. Support Services to everyone in the business of getting things done.<br><br><a href=http://www.ganymede.com.au/ class=blacklink target=top>ganymede.com.au</a>"
fcontent[6]="<strong>Bumbling B's</strong><br><br>Immortalize your most precious treasures in a timeless work of art, created especially for you, from your own photograph.  Your Art, Your Choice.  Art for sale from many artists.<br><br><a href=http://www.bumblingb.com/ class=blacklink target=top>www.bumblingb.com</a>"
fcontent[7]="<strong>Ruthven Steel</strong><br><br>has the flexibility and capacity to handle small and large volume work. Quality of design, manufacture and installation of all types of steel fabrication requirements is our business.<br><br><a href=http://www.ruthvensteel.com.au/ class=blacklink target=top>Ruthven Steel</a>"
fcontent[8]="<strong>Ararat Explorer</strong><br><br>Tourism News & Events<br><br>A Free Tourism Magazine covering the things to do in and around Ararat, Victoria, Australia.<br><br><a href=http://www.araratexplorer.com/ class=blacklink target=top>Ararat Explorer</a>"
fcontent[9]="<strong>Ararat Retirement Village</strong><br><br>Aged care facilities and extended care home for the elderly.<br><br><a href=http://www.arvgh.com/ class=blacklink target=top>Ararat Retirement Village</a>"
closetag='</font>'

var fwidth=150 //set scroller width
var fheight=150 //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=2000

//function to change content
function changecontent(){
if (index>=fcontent.length)
index=0
if (DOM2){
document.getElementById("fscroller").style.color="rgb(255,255,255)"
document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag
colorfade()
}
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++
setTimeout("changecontent()",delay+faderdelay)
}

// colorfade() partially by Marcio Galli for Netscape Communications.  ////////////
// Modified by Dynamicdrive.com

frame=20;
hex=255  // 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(0,0,0)";
frame=20;
hex=255
}   
}

if (ie4||DOM2)
document.write('<div id="fscroller" style="border:0px solid black;width:'+fwidth+';height:'+fheight+';padding:2px"></div>')

window.onload=changecontent
