var count=0;
var NS4=(document.layers) ? 1 : 0;  
var IE4=(document.all) ? 1 : 0;

function init(){
setInterval("updt()",10000); //the time is set to 3.5 seconds at this time
}

function updt(){
show('page',msg[count]); //instead of page include your layer name
count++;
if(count==msg.length) 
count=0 
}

if (navigator.appName != "Netscape")
           {    
var msg=new Array(); //add more if needed, follow the numbers in ascending order
msg[0]= "<div class=slideLink align=center><img height=10 src=images/quotesL.gif width=12 border=0><a href=solutions2.php class=slideLink>The Hive's Document Libraries, Calendar Sharing, News pages and Discussion Forums improve communication effectiveness and efficiency across remote locations.</a><img height=10 src=images/quotesR.gif width=12 border=0></div>";
msg[1]= "<div class=slideLink align=center><img height=10 src=images/quotesL.gif width=12 border=0><a href=solutions3.php class=slideLink>Extensive Document Library usage and News story features enable this European organization to share information that transcends all borders.</a><img height=10 src=images/quotesR.gif width=12 border=0></div>";
msg[2]= "<div class=slideLink align=center><img height=10 src=images/quotesL.gif width=12 border=0><a href=solutions4.php class=slideLink>The Hive’s suite of tools and applications allow an IT support company to keep its employees up to date, on the move and with critical information necessary to do their job.</a><img height=10 src=images/quotesR.gif width=12 border=0></div>";
msg[3]= "<div class=slideLink align=center><img height=10 src=images/quotesL.gif width=12 border=0><a href=solutions5.php class=slideLink>Electronically distributed newsletters and an integrated Contacts database allows a musical events promoter keeps his audience up to speed with the latest news and highlights for upcoming events.</a><img height=10 src=images/quotesR.gif width=12 border=0></div>";
msg[4]= "<div class=slideLink align=center><img height=10 src=images/quotesL.gif width=12 border=0><a href=solutions1.php class=slideLink>The Hive's advanced Calendar Sharing and availability monitoring supports the coordination of busy professional environments.</a><img height=10 src=images/quotesR.gif width=12 border=0></div>";
	}
 else
   {

}


function show(id,info){
if(NS4)
with(document[id].document){
open();
write(info);
close();
}else if(IE4){
document.all[id].innerHTML=info;
}
}

