/***********************************************
* Fading Scroller- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
var delay = 8000; //set delay between message change (in miliseconds)
var maxsteps=30; // number of steps to take to change from start color to endcolor
var stepdelay=40; // time in miliseconds of a single step
//**Note: maxsteps*stepdelay will be total time in miliseconds of fading effect
var startcolor= new Array(247,211,176); // start color (red, green, blue)
var endcolor=new Array(0,0,0); // end color (red, green, blue)
var fcontent=new Array();
begintag='
'; //set opening tag, such as font declarations
fcontent[0]="First time
visiting this site?
Please click
any Course on the left
& Click FAQ
to get familiar.
Thank you.
";
fcontent[1]="Young Couples
below 21?
Remarrying?
Muslim Converts?
Click any course
on the left and
click FAQs
for answers.
";
fcontent[2]="
Sebaik-baik
di antara kamu
ialah
yang
paling baik
terhadap isterinya
- Hadith -";
fcontent[3]="\"Bersama Mu\"
Marriage Prep Course
by SPMC!
Feel the difference!
We design your experience with us!
Find out from others who've been with us!";
fcontent[4]="Sejak tahun 2000
bersama anda.
Kursus Rumah Tangga
@Hong Kah North CC.
(Dekat Stn MRT Bt Gombak)
2&3 Oct
Sila Daftar ONLINE
Yg dahulu didahulukan";
fcontent[5]="
Marriage
is a journey
of a lifetime
DISCOVERY!";
fcontent[6]="Courses
In English
@National Library
(Bugis MRT Stn)
Oct 9 & 10
Register Now!
Almost FULL!";
fcontent[7]="Design your future!
Begin with
\"Bersama Mu by SPMC\"
The enhanced
marriage guidance
course for you!
Bismillah.";
fcontent[8]="From a
Comfort Zone
to a
Point of Readiness
in life...
The best way
to predict the future
is to CREATE it.";
fcontent[9]="Kursus Persiapan Berumah Tangga
di Masjid Al-Mukminin!
7 & 8 Ogos
Sebelum Ramadan!!!
Sila Daftar ONLINE
Hampir PENUH!";
fcontent[10]="Usaha
boleh merubah nasib
seseorang
Doa
boleh merubah takdir
Kita perlu
Berusaha
& Berdoayour belief system.
The first step
toward success:
Believe in yourself,
believe
you can succeed!";
fcontent[12]="Tanamlah benih Iman.
Selalulah husnuzon (sangka baik).
Mulakan husnuzon terhadap Allah bahawa Dia akan memilih yang terbaik untuk kita.
Kemudian kita DOA disamping usaha kita.";
fcontent[13]="\"Open the door
of your heart
& accept me
into your life...\"
\"Give me some time...
to accept myself
for who I am before I can accept you...\"
-Readiness-";
fcontent[14]="From a
Comfort Zone
to a
Point of Readiness
in life...
Chance
favors
the prepared mind.";
fcontent[15]="Kursus Persiapan Berumah Tangga
di Woodlands
Regional Library
13 & 14 Nov
Sila Daftar ONLINE
Segera.";
closetag='
';
var fwidth='148px'; //set scroller width
var fheight='204px'; //set scroller height
var fadelinks=1; //should links inside scroller content also fade like text? 0 for no, 1 for yes.
///No need to edit below this line/////////////////
var ie4=document.all&&!document.getElementById;
var DOM2=document.getElementById;
var faderdelay=0;
var index=0;
/*Rafael Raposo edited function*/
//function to change content
function changecontent(){
if (index>=fcontent.length)
index=0
if (DOM2){
document.getElementById("fscroller").style.color="rgb("+startcolor[0]+", "+startcolor[1]+", "+startcolor[2]+")"
document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag
if (fadelinks)
linkcolorchange(1);
colorfade(1, 15);
}
else if (ie4)
document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag;
index++
}
// colorfade() partially by Marcio Galli for Netscape Communications. ////////////
// Modified by Dynamicdrive.com
function linkcolorchange(step){
var obj=document.getElementById("fscroller").getElementsByTagName("A");
if (obj.length>0){
for (i=0;i 0) {
newcolor[i] = startcolor[i]-(Math.round((diff/maxsteps))*step);
} else {
newcolor[i] = startcolor[i]+(Math.round((Math.abs(diff)/maxsteps))*step);
}
}
return ("rgb(" + newcolor[0] + ", " + newcolor[1] + ", " + newcolor[2] + ")");
}
if (ie4||DOM2)
document.write('');
if (window.addEventListener)
window.addEventListener("load", changecontent, false)
else if (window.attachEvent)
window.attachEvent("onload", changecontent)
else if (document.getElementById)
window.onload=changecontent