/*
Fading Scroller- By DynamicDrive.com
For full source code, 100's more DHTML scripts, and TOS,
visit http://www.dynamicdrive.com
*/

var delay=1000 //set delay between message change (in miliseconds)
var fcontent=new Array()
begintag='<p align="justify"><font face="verdana" size=1 color="brown">' //set opening tag, such as font declarations
fcontent[0]="Admissions for B. Ed Course for Academic year 2009-10 has been started.<br><br>Last date for B. Ed Admission - First week of February. <br><br>Classes starts from second week of January for B. Ed 2009-10 batch.<br><br><b>Hurry!! Limited seats are available.</b></i>"
fcontent[1]="Repeaters result has been announced and for details contact our college office personally. <br><br>Last date for Revaluation is 25/03/08. Amount for Revaluation is Rs. 160/- per paper. Demand Draft for Revaluation should reach our college office on or before 25/03/08. <br><br>Last date for re-examination application to be submitted is 27/03/08. Examination fees Rs. 835 + Rs. 150 per paper. Demand Draft for re-examination should reach our college office on or before 27/03/08. <br><br>Draft should be in the name of <b>Pali Education Sosiety</b>, Payable at Bangalore.</i>"
fcontent[2]="<b>St. Pauls High school </b>has a secular approach. Education here is an open opportunity to all children irrespective of caste, creed, race, religion, region or gender. Adfmissions is exclusively on merit and on the basis of exhaustive interviews.</i>"
fcontent[3]="<b>Hostel Facility :</b><br>Hostel facilities are available for both men and women candidates on the basis of  “first come first serve”.  The Hostel applications will be available in the college office.</i>"
fcontent[4]="<b>Library :</b><br>The college library has over 4000 books on different aspects of education.  Both open access and borrowing systems are provided to encourage reading habits in the trainees.  The college subscribes over ten journals on education.</i>"
fcontent[5]="<b>The Course :</b><br>The college offers the degree of Bachelor of Education of one academic year as per the regulations of the University of Bangalore.  The academic year usually begins in the month of November / December.</i>"
closetag='</font>'

var fwidth=195 //set scroller width
var fheight=140 //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=10000

//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