/*
Gradual-Highlight Image Script II-
By J. Mark Birenbaum (birenbau@ugrad.cs.ualberta.ca)
Permission granted to Dynamicdrive.com to feature script in archive
For full source to script, visit http://dynamicdrive.com
*/
nereidFadeObjects = new Object();
nereidFadeTimers = new Object();
/* object - image to be faded (actual object, not name);
* destop - destination transparency level (ie 80, for mostly solid)
* rate - time in milliseconds between trasparency changes (best under 100)
* delta - amount of change each time (ie 5, for 5% change in transparency)
*/
function nereidFade(object, destOp, rate, delta){
if (!document.all)
return
if (object != "[object]"){ //do this so I can take a string too
setTimeout("nereidFade("+object+","+destOp+","+rate+","+delta+")",0);
return;
}
clearTimeout(nereidFadeTimers[object.sourceIndex]);
diff = destOp-object.filters.alpha.opacity;
direction = 1;
if (object.filters.alpha.opacity > destOp){
direction = -1;
}
delta=Math.min(direction*diff,delta);
object.filters.alpha.opacity+=direction*delta;
if (object.filters.alpha.opacity != destOp){
nereidFadeObjects[object.sourceIndex]=object;
nereidFadeTimers[object.sourceIndex]=setTimeout("nereidFade(nereidFadeObjects["+object.sourceIndex+"],"+destOp+","+rate+","+delta+")",rate);
}
}
Thursday, April 12, 2007
I about to go for friday prayers now, but I decided to drop a little post just to keep the people around me updated. Things between me and her sort of cooled down already, I apologised. I did not know why. Thought of me and her meeting up today but apparently she was just too tired so she just fell asleep when she got back. Don't blame her.
I'm looking forward at what is installed for me later on, they say this year's sec 1 batch is a new breed, in other words, a new species of their own. I heard and saw a GAY in my ex school, I really do hate gays, they give me the creeps. I also heard that this year's batch of girls are really, er....I do not know what words to put in to make it sound nicer but here it goes, thicked-skinned.
I find that maybe going for this camp will not only make my circle of friends wider, but it also gives me some relaxation from the stressful world outside. It also gives me some time to rethink my life, and whether the choices I made were right. Maybe...just maybe.
Well, got to go now, will be posting again this Sunday, April 15th.