.<title> <body oncontextmenu="return false;"> <SCRIPT language=Javascript> <!-- function initArray() { this.length = initArray.arguments.length; for (var i = 0; i < this.length; i++) { this[i] = initArray.arguments[i]; } } var text = new initArray (" pon&zi <33 ily"); var speed = 100; var speed2 = 2500; var whereat = 0; var whichone = 0; function waveb() { var befor = text[whichone].substring(0,whereat); var wave = text[whichone].substring(whereat,whereat+1).toUpperCase(); window.status = befor + wave; if (whereat == text[whichone].length) { whereat = 0; ++whichone; if (whichone == text.length) whichone = 0; setTimeout("waveb()",speed2); } else { whereat++; setTimeout("waveb()",speed); } } waveb(); //--> </script> <script language="JavaScript"> <!-- var message="Watcha doin? ^^"; function click(e) { if (document.all) { if (event.button == 2) { alert(message); return false; } } if (document.layers) { if (e.which == 3) { alert(message); return false; } } } if (document.layers) { document.captureEvents(Event.MOUSEDOWN); } document.onmousedown=click; // --> </script> <noembed><body></noembed> <style type="text/css"> a:link {text-decoration: none; color: #464646; font-weight:bold} a:visited {text-decoration: none; color: #464646; font-weight:bold} a:active {text-decoration: none; color: #464646; font-weight:bold} a:hover {text-decoration: none; color: white; border: 3px solid -464646; background-color: transparent; cursor: help} body { background: black; font-family: Kristen ITC; color: 464646; font-size: 10px; scrollbar-arrow-color: white; scrollbar-track-color: black; scrollbar-face-color: black; scrollbar-highlight-color: black; scrollbar-3dlight-color: black; scrollbar-darkshadow-color: black; scrollbar-shadow-color: black;} } textarea, input, select { background: transparent; cursor: crosshair font-family : Kristen ITC; font-size: 10px; color: white; border-color: none; border-style: none; border-top-width: 1px; border-left-width: 1px; border-right-width: 1px; border-bottom-width: 1px; } .head { font-family:Kristen ITC; font-size: 15px; line-height:15px; color: white; background-color: transparent; border-bottom: 2px solid #464646; text-transform: none; text-align:right;} .entrieshead { font-family:Kristen ITC; font-size: 15px; line-height:15px; color: white; background-color: transparent; border-bottom: 2px solid #464646; text-transform: none; } .head2 { font-family: Kristen ITC; font-size: 9px; background: transparent; color:white; text-decoration:none; text-align:left; } </style> <meta name='google-adsense-platform-account' content='ca-host-pub-1556223355139109'/> <meta name='google-adsense-platform-domain' content='blogspot.com'/> <!-- --><style type="text/css">@import url(https://www.blogger.com/static/v1/v-css/navbar/3334278262-classic.css); div.b-mobile {display:none;} </style> </head><script type="text/javascript"> function setAttributeOnload(object, attribute, val) { if(window.addEventListener) { window.addEventListener('load', function(){ object[attribute] = val; }, false); } else { window.attachEvent('onload', function(){ object[attribute] = val; }); } } </script> <div id="navbar-iframe-container"></div> <script type="text/javascript" src="https://apis.google.com/js/platform.js"></script> <script type="text/javascript"> gapi.load("gapi.iframes:gapi.iframes.style.bubble", function() { if (gapi.iframes && gapi.iframes.getContext) { gapi.iframes.getContext().openChild({ url: 'https://www.blogger.com/navbar/6379253621346768989?origin\x3dhttp://rainingdaysarechanging.blogspot.com', where: document.getElementById("navbar-iframe-container"), id: "navbar-iframe" }); } }); </script> <style type="text/css"> .matrix { font-family:Lucida Console, Courier, Monotype; font-size:10pt; text-align:center; width:10px; padding:0px; margin:0px;} </style> <div style="padding:1px; background:transparent ;width:224px; height:100%; left:650; top:550; position: absolute;"> <div class="head"><b>ME<br></div><br></b> <font color="white" size="1"><p align="right"><b>You're the number<b><br> <a href="http://www.easycounter.com/"> <img src="http://www.easycounter.com/counter.php?terrorman21" border="0" alt=""></a>th <a href="http://www.easycounter.com/FreeCounter3.html"></a> <font color="white" size="1"><p align="right"><b>person to come to my blog! Welcome!!</b><br> <script type="text/javascript"> /*********************************************** * 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 = 1500; //set delay between message change (in miliseconds) var maxsteps=30; // number of steps to take to change from start color to endcolor var stepdelay=60; // time in miliseconds of a single step //**Note: maxsteps*stepdelay will be total time in miliseconds of fading effect var startcolor= new Array(255,255,255); // start color (red, green, blue) var endcolor=new Array(0,0,0); // end color (red, green, blue) var fcontent=new Array(); begintag='<div style="font: normal 14px Arial; padding: 5px;">'; //set opening tag, such as font declarations fcontent[0]="Welcome to my blog."; fcontent[1]="Blog editing is done by Hafizam"; fcontent[2]="Play nice.XD"; fcontent[3]="Have fun!=D"; fcontent[4]="Don't mess about!"; fcontent[5]="AND TAG TAG TAG!!!!"; fcontent[5]="Thank you and enjoy your stay!! :D"; closetag='</div>'; var fwidth='150px'; //set scroller width var fheight='150px'; //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<obj.length;i++) obj[i].style.color=getstepcolor(step); } } /*Rafael Raposo edited function*/ var fadecounter; function colorfade(step) { if(step<=maxsteps) { document.getElementById("fscroller").style.color=getstepcolor(step); if (fadelinks) linkcolorchange(step); step++; fadecounter=setTimeout("colorfade("+step+")",stepdelay); }else{ clearTimeout(fadecounter); document.getElementById("fscroller").style.color="rgb("+endcolor[0]+", "+endcolor[1]+", "+endcolor[2]+")"; setTimeout("changecontent()", delay); } } /*Rafael Raposo's new function*/ function getstepcolor(step) { var diff var newcolor=new Array(3); for(var i=0;i<3;i++) { diff = (startcolor[i]-endcolor[i]); if(diff > 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('<div id="fscroller" style="border:1px solid black;width:'+fwidth+';height:'+fheight+'"></div>'); if (window.addEventListener) window.addEventListener("load", changecontent, false) else if (window.attachEvent) window.attachEvent("onload", changecontent) else if (document.getElementById) window.onload=changecontent </script> <br> <img src="http://i292.photobucket.com/albums/mm22/wonder_lick/Animated%20pics/wonder_lick_treadmill.gif"> <br> btw thats not me.:D <br> <marquee>Randolph L.Koh</marquee><br> 16 <br> Secondary 4 express <br> Irritating like heck, and if you can get past that, im you're best buddy.<br> Falls in love easily<br> Total Moron<br> Not being modest or anything, its true.<br> Greendale Secondary <br> Ncc 2nd sergeant, INTERNAL PROMOTION FOOL!:D<br> Birthday:May 13 1993<br> msn<br> raining_days@hotmail.com<br> email<br> randolphlance@hotmail.com<br><br> <div class="head"><b>Music<br></div><br></b> <p align="right">The songs are kinda awesome, to me anyways. Btw the jap songs.. all love songs.. cept 'happybirthdaytome' <br><br> <center><p style="visibility:visible;"><object type="application/x-shockwave-flash" data="http://assets.myflashfetish.com/swf/mp3/mp-sk.swf" height="180" width="400" style="width:400px;height:180px"><param name="movie" value="http://assets.myflashfetish.com/swf/mp3/mp-sk.swf" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="salign" value="TL" /><param name="wmode" value="transparent"/><param name="flashvars" value="myid=25228324&path=2009/07/13&mycolor=050505&mycolor2=383737&mycolor3=db1111&autoplay=true&rand=1&f=4&vol=100&pat=16&grad=true&ow=400&oh=180"/></object><br><a href="http://www.mixpod.com/playlist/25228324" target="_blank"><img src="http://assets.myflashfetish.com/images/get-tracks.gif" title="Get Music Tracks!" style="border-style:none;" alt="Music"></a><a href="http://www.mixpod.com" target="_blank"><img src="http://assets.myflashfetish.com/images/make-own.gif" title="Create A Playlist!" style="border-style:none;" alt="Playlist"></a><br /><a href="http://mixpod.com">Music Playlist</a> at <a href="http://mixpod.com">MixPod.com</a></p></center> <br> <br> <div class="head"><b>CHATTER<br></div><br></b> <p align="right">TAG PEOPLE!~<br> <!-- BEGIN CBOX - www.cbox.ws - v001 --> <div id="cboxdiv" style="text-align: center; line-height: 0"> <div><iframe frameborder="0" width="160" height="305" src="http://www2.cbox.ws/box/?boxid=1635419&boxtag=gljw0b&sec=main" marginheight="2" marginwidth="2" scrolling="auto" allowtransparency="yes" name="cboxmain" style="border:#FFFFFF 1px solid;" id="cboxmain"></iframe></div> <div><iframe frameborder="0" width="160" height="75" src="http://www2.cbox.ws/box/?boxid=1635419&boxtag=gljw0b&sec=form" marginheight="2" marginwidth="2" scrolling="no" allowtransparency="yes" name="cboxform" style="border:#FFFFFF 1px solid;border-top:0px" id="cboxform"></iframe></div> </div> <!-- END CBOX --> <div class="head"><b>CRAVINGS<br></div><br></b> <p align="right"> I WANT FABLE 2!!!(got it and finished)<br> Good results (NADA) <br> happy life..(NADA)<br> a nice girl to share my life with (put off till further notice)<br> ;(<br> If you ever want something, you gotta work for it, and not expect someone to drop it on you.<br> </p> <div class="head"><b>LiNKS<br></div><br></b> <p align="right"> <a href="http://www.friendster.com/superflymiser.com/">My Friendster</a><br> <a href="http://www.bakaa-keke.blogspot.com/">Aries. Bakakeke!</a><br> <a href="http://www.allstar-allied.blogspot.com/"> Azam; floorballer </a><br> <a href="http://www.itsablogspotdotcom.blogspot.com"> Bec;The death defiant</a><br> <a href="http://myunknown-blog.blogspot.com"> Berlinda ze'unknown'?</a><br> <a href="http://www.break-this-record.blogspot.com/"> Cadet Benjamin XD </a><br> <a href="http://calyn-n.blogspot.com/"> Calyn ClassMatey </a><br> <a href="http://www.b00ya.blogspot.com/">Celine;Booyaz! </a><br> <a href="http://www.stupid-unicorns.blogspot.com/">Charlene;Chachambo.</a><br> <a href="http://www.gans-th-addicted.blogspot.com/">Charlene, faiz's god mei</a><br> <a href="http://www.princess-eme-eternity-swirl.blogspot.com">Emelyne</a><br> <a href="http://princesslovespurple.blogspot.com">Ena; lil princess</a><br> <a href="http://degrimmreaper.blogspot.com/">Faizal metal bro, ex tution and one of the 3 musketeers bro </a><br> <a href="http://www.pansypuddy.blogspot.com/">Frans</a><br> <a href="http://experiencesfromastrangeworld.blogspot.com/"> G choik primary sch buddy</a><br> <a href="http://celestialmoments.blogspot.com/">Hafizam;Blackie</a><br> <a href="http://jewels094.blogspot.com">Jasmine;jaspiggy</a><br> <a href="http://www.fated-love.blogspot.com/">JiaLing</a><br> <a href="http://asweetbumblebee.blogspot.com/">My darlin lil sis jacq. </a><br> <a href="http://www.ice-s-cream.blogspot.com">Jazlyn</a><br> <a href="http://www.masked-for-life.blogspot.com/">Jin Chen;lamer</a><br> <a href="http://thatsmil-e.blogspot.com/">Jonie</a><br> <a href="http://www.starsandstoneroses.blogspot.com/">LiLing!PriSchoolMate</a><br> <a href="http://lovelife-justniico.blogspot.com/">Nata de nico!</a><br> <a href="http://www.mysecret-stories.blogspot.com/">Sarah</a><br> <a href="http://ladeee-freak.blogspot.com/">Shahridah red cross healer</a><br> <a href="http://shatterednhurt.blogspot.com/"> Shazlia emo rocker</a><br> <a href="http://www.iwrestledyourmomonce.com/">Sufyan bro / buddy </a><br> <a href="http://www.nightkidinthedark.blogspot.com">Vincent;xiao bin</a><br> <a href="http://actoninstinct.livejournal.com">YouJin Or Eugene ^^ </a><br> <a href="http://thesmilingbaker.blogspot.com/">Ziyi; le lone baker</a><br> <div class="head"><b>My recoomended funny vids!<br></div><br></b> <br> <object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/AWIOKFsWtCI&hl=en&fs=1&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/AWIOKFsWtCI&hl=en&fs=1&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="200"></embed></object> <br> The grind 1 pt 1 <br> <object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/Ealfr5_jWgs&hl=en&fs=1&color1=0x3a3a3a&color2=0x999999&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/Ealfr5_jWgs&hl=en&fs=1&color1=0x3a3a3a&color2=0x999999&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="200"></embed></object> <br> The grind 1 pt 2 <br> <object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/3ThL3iPoRc8&hl=en&fs=1&color1=0x234900&color2=0x4e9e00&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/3ThL3iPoRc8&hl=en&fs=1&color1=0x234900&color2=0x4e9e00&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="200"></embed></object> <br> The grind 2 pt 1 <br> <object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/pl-XP6o8oOw&hl=en&fs=1&color1=0xe1600f&color2=0xfebd01&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/pl-XP6o8oOw&hl=en&fs=1&color1=0xe1600f&color2=0xfebd01&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="200"></embed></object> <br> The grind 2 pt 2 <br> <object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/FvPbxZmZxZ8&hl=en&fs=1&color1=0x2b405b&color2=0x6b8ab6&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/FvPbxZmZxZ8&hl=en&fs=1&color1=0x2b405b&color2=0x6b8ab6&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="200"></embed></object> <br> History of the F word <br> <object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/DiSSk2tSq7U&hl=en&fs=1&color1=0xcc2550&color2=0xe87a9f&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/DiSSk2tSq7U&hl=en&fs=1&color1=0xcc2550&color2=0xe87a9f&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="200"></embed></object> <br> Fable 2 demo <br> <object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/r-FkwA8A_JI&hl=en&fs=1&color1=0x402061&color2=0x9461ca&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/r-FkwA8A_JI&hl=en&fs=1&color1=0x402061&color2=0x9461ca&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="200"></embed></object> <br> Fable 2 gameplay <br> <object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/HVGQIkYN2uI&hl=en&fs=1&color1=0x5d1719&color2=0xcd311b&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/HVGQIkYN2uI&hl=en&fs=1&color1=0x5d1719&color2=0xcd311b&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="200"></embed></object> <br> Halo theme guitar 3 expert mode <br> <object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/lZ-p4Q9W-qg&hl=en&fs=1&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/lZ-p4Q9W-qg&hl=en&fs=1&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="200"></embed></object> <br> Lorraine goes to the dentist. very funny <br> http://www.youtube.com/watch?v=1zCrpzpV2e0 <br> This is a link to a damn nice mini series of bmw driving with Clive Owen as the driver and stuff. this vid his handless drift is like. omg.. <br> <object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/KA2B5X0LhMY&hl=en&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/KA2B5X0LhMY&hl=en&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="200"></embed></object> <br> Check out the moon walk. its OMGish <object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/wSfA66AlS3Q&hl=en&fs=1&color1=0x2b405b&color2=0x6b8ab6&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/wSfA66AlS3Q&hl=en&fs=1&color1=0x2b405b&color2=0x6b8ab6&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="200"></embed></object> <br> Funny skit by mad tv. really must watch. here pussy pussy pussy!^^ <br> <object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/NOGtJECW4pk&hl=en&fs=1&color1=0x006699&color2=0x54abd6&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/NOGtJECW4pk&hl=en&fs=1&color1=0x006699&color2=0x54abd6&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="200"></embed></object> <br> sex face.. lols. <br> <object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/ZKslDLPpp34&hl=en&fs=1&color1=0x234900&color2=0x4e9e00&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/ZKslDLPpp34&hl=en&fs=1&color1=0x234900&color2=0x4e9e00&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="200"></embed></object> <br> French beat boxer Joseph part 1 <br> <object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/APMxJz1f4Sc&hl=en&fs=1&color1=0x3a3a3a&color2=0x999999&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/APMxJz1f4Sc&hl=en&fs=1&color1=0x3a3a3a&color2=0x999999&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="200"></embed></object> <br> French beat boxer joseph Part 2 <br> <object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/tn1pFTiaDdg&hl=en&fs=1&color1=0x3a3a3a&color2=0x999999&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/tn1pFTiaDdg&hl=en&fs=1&color1=0x3a3a3a&color2=0x999999&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="200"></embed></object> <br> French beat boxer joseph part 3 <br> <object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/T-TA57L0kuc&hl=en&fs=1&color1=0x234900&color2=0x4e9e00&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/T-TA57L0kuc&hl=en&fs=1&color1=0x234900&color2=0x4e9e00&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="200"></embed></object> <br> Funny live video of the famous "internet is for porn" <br> <object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/bo3eFundhmY&hl=en&fs=1&color1=0x402061&color2=0x9461ca&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/bo3eFundhmY&hl=en&fs=1&color1=0x402061&color2=0x9461ca&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="200"></embed></object> <br> The maple story spoof for the vid " the internet is for porn" <br> <object width="425" height="349"><param name="movie" value="http://www.youtube.com/v/kK1KbI_91o4&hl=en&fs=1&color1=0xe1600f&color2=0xfebd01&border=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/kK1KbI_91o4&hl=en&fs=1&color1=0xe1600f&color2=0xfebd01&border=1" type="application/x-shockwave-flash" allowfullscreen="true" width="300" height="200"></embed></object> <br> Damn funny video by TheGuild maple video on killing a snail. <br> <object width="432" height="351"><param name="movie" value="http://www.megavideo.com/v/U9UX6LN952b0c5069d0479dcafdc486641f48be3.7749541565.0"></param><param name="wmode" value="transparent"></param><embed src="http://www.megavideo.com/v/U9UX6LN952b0c5069d0479dcafdc486641f48be3.7749541565.0" type="application/x-shockwave-flash" wmode="transparent" width="300" height="200"></embed></object> <br> Full video of the max payne the movie. <div class="head"><b>CREDITS<br></div><br></b> <p align="right">Base:<a href="http://www.blogskins.com/me/``Natali**">Natali**</a><br> <a href="http://justplainlyme.blogspot.com/">Natali**</a><br> Designer:<a href="http://www.blogskins.com/me/ice-dtea">ice-dTEA</a><br> Image Hosted by: <a href="http://www.photobucket.com/">photobucket</a> <div class="head"><b>myPAST<br></div><br></b> <p align="right"> <a href='http://rainingdaysarechanging.blogspot.com/2007/12/'>December 2007</a><br> <a href='http://rainingdaysarechanging.blogspot.com/2008/01/'>January 2008</a><br> <a href='http://rainingdaysarechanging.blogspot.com/2008/02/'>February 2008</a><br> <a href='http://rainingdaysarechanging.blogspot.com/2008/03/'>March 2008</a><br> <a href='http://rainingdaysarechanging.blogspot.com/2008/04/'>April 2008</a><br> <a href='http://rainingdaysarechanging.blogspot.com/2008/05/'>May 2008</a><br> <a href='http://rainingdaysarechanging.blogspot.com/2008/06/'>June 2008</a><br> <a href='http://rainingdaysarechanging.blogspot.com/2008/08/'>August 2008</a><br> <a href='http://rainingdaysarechanging.blogspot.com/2008/09/'>September 2008</a><br> <a href='http://rainingdaysarechanging.blogspot.com/2008/10/'>October 2008</a><br> <a href='http://rainingdaysarechanging.blogspot.com/2008/11/'>November 2008</a><br> <a href='http://rainingdaysarechanging.blogspot.com/2008/12/'>December 2008</a><br> <a href='http://rainingdaysarechanging.blogspot.com/2009/01/'>January 2009</a><br> <a href='http://rainingdaysarechanging.blogspot.com/2009/04/'>April 2009</a><br> <a href='http://rainingdaysarechanging.blogspot.com/2009/05/'>May 2009</a><br> <a href='http://rainingdaysarechanging.blogspot.com/2009/06/'>June 2009</a><br> <a href='http://rainingdaysarechanging.blogspot.com/2009/07/'>July 2009</a><br> <br></p></div> <div style="padding:1px; background:transparent ;width:494px; height:100%; left: 100; top:550; position: absolute;"> <div class="entrieshead"><b>Wednesday, December 10, 2008</b></div> </font><br> <font size="1" color="white"><div style="clear:both;"></div><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTpLWJNa-tv424ocHQmiLlvFGAXaW6cwm5XHS8HmHTqdYdPsUJv-VvkuoigJaIL8RUjnkI_YPBdv4Zl5PM2Y1Xm2fLEVzFLpEo-si8V9Au_hz3vGi1iCUeKnY9ecMC5hYdprjCf83wZ5A/s1600-h/P1170250.JPG"><img id="BLOGGER_PHOTO_ID_5278172014785756434" style="WIDTH: 320px; CURSOR: hand; HEIGHT: 240px" alt="" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTpLWJNa-tv424ocHQmiLlvFGAXaW6cwm5XHS8HmHTqdYdPsUJv-VvkuoigJaIL8RUjnkI_YPBdv4Zl5PM2Y1Xm2fLEVzFLpEo-si8V9Au_hz3vGi1iCUeKnY9ecMC5hYdprjCf83wZ5A/s320/P1170250.JPG" border="0" /></a> YAY group photo.<br /><div><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiPQjD8f6yFslEvZW92cbEIu_P_lGqP8dV3BQMu4jZ6a5NggMgVCRwR_U2b5rBx_56OTVvzL8JRw0P-8TMqZyzAa3i8ECRReLdRq9r6nr6s3hkJmaFTrdusV7ysDjHNf49KLZj656xu4tU/s1600-h/P1170236.JPG"><img id="BLOGGER_PHOTO_ID_5278172009639728498" style="WIDTH: 320px; CURSOR: hand; HEIGHT: 240px" alt="" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiPQjD8f6yFslEvZW92cbEIu_P_lGqP8dV3BQMu4jZ6a5NggMgVCRwR_U2b5rBx_56OTVvzL8JRw0P-8TMqZyzAa3i8ECRReLdRq9r6nr6s3hkJmaFTrdusV7ysDjHNf49KLZj656xu4tU/s320/P1170236.JPG" border="0" /></a> OOH this was me having fun bbqing a chicken wing.. IM awesome<br /><br /><div><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiq4hpL4XcPNn-TzTPJVWDIACQ3weDDDV6X5ZIeAa8FhnLneMixXSzxCtClJJqeZU5WZdS1206Ed5Qb0zl_Uutu5DC5KVka6LNCKgDg34KKINkqiYE4hT5DxuGfnPIyFZ9jSbcEDXtcA6U/s1600-h/P1170231.JPG"><img id="BLOGGER_PHOTO_ID_5278172004878010994" style="WIDTH: 320px; CURSOR: hand; HEIGHT: 240px" alt="" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiq4hpL4XcPNn-TzTPJVWDIACQ3weDDDV6X5ZIeAa8FhnLneMixXSzxCtClJJqeZU5WZdS1206Ed5Qb0zl_Uutu5DC5KVka6LNCKgDg34KKINkqiYE4hT5DxuGfnPIyFZ9jSbcEDXtcA6U/s320/P1170231.JPG" border="0" /></a> Satay.. i'll just hold them and suddenly they'll burst into flames and be cooked within seconds.^^<br /><br /><br /><div><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNxi9b3DSUF9bZsffObW0lfmN3xQAJoKoQgRlVv6qX5rYWHU17HtaC41RW3qxZzlrg3yVn7VYiSXTZSofU_nc8YuyJ8uVGHavfyi1sPk6qJVga6oi8KlySNLUF0zbjdhdXE5-lRU4wR0I/s1600-h/P1170217.JPG"><img id="BLOGGER_PHOTO_ID_5278172001544599346" style="WIDTH: 320px; CURSOR: hand; HEIGHT: 240px" alt="" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjNxi9b3DSUF9bZsffObW0lfmN3xQAJoKoQgRlVv6qX5rYWHU17HtaC41RW3qxZzlrg3yVn7VYiSXTZSofU_nc8YuyJ8uVGHavfyi1sPk6qJVga6oi8KlySNLUF0zbjdhdXE5-lRU4wR0I/s320/P1170217.JPG" border="0" /></a> NOt i take one.<br /><br /><div><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjdYOiiayWiZ5E8k9yvZAeO9730yeEjD_UncO4dGxKNcEpSguu4FjbjXhPuwSBiorOYN7aXxc_UX_RrLDqRtuSAahoo83quFg-jOO9mo0ndHA1t3PopT3shf9AmYy9v_EBspNgWBf-FFts/s1600-h/P1170226.JPG"><img id="BLOGGER_PHOTO_ID_5278171999290929154" style="WIDTH: 320px; CURSOR: hand; HEIGHT: 240px" alt="" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjdYOiiayWiZ5E8k9yvZAeO9730yeEjD_UncO4dGxKNcEpSguu4FjbjXhPuwSBiorOYN7aXxc_UX_RrLDqRtuSAahoo83quFg-jOO9mo0ndHA1t3PopT3shf9AmYy9v_EBspNgWBf-FFts/s320/P1170226.JPG" border="0" /></a> our food !<br /><br /><br /><br /><br /><div><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjldwFhoWkrCelIQdn7bMrdYAqEsmQUoiW4r76lBVvfbaDooYRhLEKHkO-MJR7JGISSxDShlq42AjMpjsKcW76plZT2f7007Hf8AL6OEjjMjgK2BchZYpvcNglvA1fkxpqUEozO0FVdt5k/s1600-h/P1170195.JPG"><img id="BLOGGER_PHOTO_ID_5278167521876131266" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; WIDTH: 320px; CURSOR: hand; HEIGHT: 240px" alt="" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjldwFhoWkrCelIQdn7bMrdYAqEsmQUoiW4r76lBVvfbaDooYRhLEKHkO-MJR7JGISSxDShlq42AjMpjsKcW76plZT2f7007Hf8AL6OEjjMjgK2BchZYpvcNglvA1fkxpqUEozO0FVdt5k/s320/P1170195.JPG" border="0" /></a><br /><br /><br /><br /><br /><br /><div><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgIiiKMxD4kAn1swzUC7fpUp2Gq1WMwPrXXl4DVGVBnywnQ0jZ5f-hchvLZAqlYrZIbKodk4rWLoSvB729A8yz2n6nY3J1o9UZreCJbwjjd5I_p-NEHMS45AK71CjA4TJLONQ1g0VQ36gY/s1600-h/P1170214.JPG"><img id="BLOGGER_PHOTO_ID_5278167517987057602" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; WIDTH: 320px; CURSOR: hand; HEIGHT: 240px" alt="" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgIiiKMxD4kAn1swzUC7fpUp2Gq1WMwPrXXl4DVGVBnywnQ0jZ5f-hchvLZAqlYrZIbKodk4rWLoSvB729A8yz2n6nY3J1o9UZreCJbwjjd5I_p-NEHMS45AK71CjA4TJLONQ1g0VQ36gY/s320/P1170214.JPG" border="0" /></a><br /><br /><br /><br /><br /><br /><br /><div>Becks being a nerd<a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhLZyk5OFA84_lyvAqOQr47PQscv7-lzMabAZL8j8_Q2TvXtMlrcGXSj4EXlz4g5ztTTpzkJJ9NVMnJRFqmM1U_7lVod4M4PEmWXxGjX52v8TZ7g41XbuuMEqwCKp0xEyjX44k1JTbS3V8/s1600-h/P1170191.JPG"><img id="BLOGGER_PHOTO_ID_5278167513728731090" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; WIDTH: 320px; CURSOR: hand; HEIGHT: 240px" alt="" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhLZyk5OFA84_lyvAqOQr47PQscv7-lzMabAZL8j8_Q2TvXtMlrcGXSj4EXlz4g5ztTTpzkJJ9NVMnJRFqmM1U_7lVod4M4PEmWXxGjX52v8TZ7g41XbuuMEqwCKp0xEyjX44k1JTbS3V8/s320/P1170191.JPG" border="0" /></a><br /><br /><br /><br /><br />JIn wai eatting a burning coal.<br /><br /><br /><div><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEibygvkpkX_J9NfY4opZt5f1DG82oVoqo7T051HkQGC26AkpWVu3vSf8hbx3vSFSG_HpPlkktZrCPD0IPayV2WgFy9lqlunWAsDX3DgvR4vii5-d_wSgvPjnLuMMXLl1QgECzbrxv7bPPg/s1600-h/P1170188.JPG"><img id="BLOGGER_PHOTO_ID_5278167508969490370" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; WIDTH: 320px; CURSOR: hand; HEIGHT: 240px" alt="" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEibygvkpkX_J9NfY4opZt5f1DG82oVoqo7T051HkQGC26AkpWVu3vSf8hbx3vSFSG_HpPlkktZrCPD0IPayV2WgFy9lqlunWAsDX3DgvR4vii5-d_wSgvPjnLuMMXLl1QgECzbrxv7bPPg/s320/P1170188.JPG" border="0" /></a><br /><br /><br /><br /><br /><br /><br /><br /><br /></div><div><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgSxNKRfSihyu16DfG2qu5XvXI-84iEbK_bfDjYN3RTjghyzIfRDHgCBFAyQ9-QcQS_8gYQmnxolynLWEFfoXB8F8a23qyZ0PaTeb99_ku8_Z2vMZGecyu_0xqs_ORihwsxLK4-z9zM1Kw/s1600-h/P1170186.JPG"><img id="BLOGGER_PHOTO_ID_5278167504168731986" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; WIDTH: 320px; CURSOR: hand; HEIGHT: 240px" alt="" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgSxNKRfSihyu16DfG2qu5XvXI-84iEbK_bfDjYN3RTjghyzIfRDHgCBFAyQ9-QcQS_8gYQmnxolynLWEFfoXB8F8a23qyZ0PaTeb99_ku8_Z2vMZGecyu_0xqs_ORihwsxLK4-z9zM1Kw/s320/P1170186.JPG" border="0" /></a><br /><br /><br /><br /><br /></div><div><br /><br /><br /><br /><br /></div><div></div><div><br /><br /><br /><br /><br /></div><div></div><div><br /><br /><br /><br /></div><div>GRAH! BBQ BBQ BBQ<br /></div><div>too darn lazy to blog i guess. gotta wait till im in the mood yay!<br /></div><div>Once i listened to the song on my blog i dont know but i just felt like blogging about the bbq just so i dont forget about it.. weird.<br /></div><div><br /></div><div>anyhoo<br /></div><div>Starting of the day.. i think i came late. heh. i met becks and ben in the ntuc up in pp trying to buy the water ballooons. but we went downstairs instead to that stationary shop. woo.<br /></div><div>Then we took a bus to the shopping center. i forgot whats ze name is.. i think its e hub or something. we went to get movie tickets for .. whats that super dog's name again.. dash? ( checks internet) ah its bolt. blar. </div><div><br />anyhoo we went to the hot dog place to grab some food. Ben had a hot dog. becks had a hot doggie. and i had a chilli hot dog with chilli friends. heh when the cashier asked me if i wanted chilli ketchup to go with it and i said. then im gonna need lots of water heh. </div><div><br /></div><div>Anyhoo it was'nt as hot as i thought. it was hot at all. just some garlic in meat. meh. okay we were sitting at the window seat were we could see the ferris wheel.. when we were eatting some kids were on the ride. and were watching us eat. .. so i was like playing funny faces with them and becks was laughing<br /></div><div><br /></div><div>heh<br /></div><div></div><div>okay then we were walking around for an hour and met up with ziyi and the others at cheers. so i passed them the heavy brownies and we went to watch the show. the show was pretty good i guess. but somehow it was'nt as exciting as i thought. i was like. wth most of the time and laughing like when the dog hit the car and the car flew up.. lols. then i love the part where the dog is doing the " heat vision " at the dog catcher's door lock heh. so cute.<br /></div><div>anyhoo after the movie we went to help agnus collect some book from some guy .. apparently he has some bad mojo with becks so me and her went to hiding while ben collected the books... i never seen the guy before and he was like HUGE. no way im gonna collect the books. anyways he saw becks but dinna care so we went back to the bbq. .. was okay at first. nth to eat yet. i cant name everyone cuz.. okay lah even after a year my memory is shot out. heh. so i went to make water balloons by my self.. so sad. went when it was still bright and came back with my feet bleeding cuz of some poky part of my shoe. and a arm ful of water balloons. then they told me to go with aloy to buy some materials.. sigh. when i came back arh they play with the water balloons already.. wth. </div><div><br />at least i got to throw one at becky first. meh. </div><div><br />OOkay when i came back with aloy i made more water balloons with him at the toilets and wa liao it was hell. my fingers hurt. the balloons kept bursting under the pressure of one another.. and the plastic handles kept tearing. one part when we were walking from the wild wild wet bbq chalets area toilet to the escape theme park outside de enterance to go into the park. the whole thing tore and so many waterballoons bounced away and poped.. lols me and aloy were like cursing. so we got back with less than half so i was like pissed</div><div><br />when i came back</div><div><br /></div><div>i dropped them all</div><div><br /></div><div>picked one up. </div><div><br /></div><div>and started throwing.</div><div><br /></div><div>well before that becky dumped icewater into my shirt with someone so i was shouting WAIT LAH I HAVN'T TOOK OUT MY PHONE YET. any hoo i started throwing at ppl. i got to wet gid later and he tried to throw charcoal on me and since he could'nt catch me he put it in my new jacket.. bastard.<br />Ookay then i was starving by then so i took some lighter fluid i bought just now i try to rekindle the fire.. bad news. it did'nt work. meh. so i pratically starved..<br />here i'll put some photos.</div><div> </div><div>ps oh yeah thers one part where i went to get supplies again with hui ning and some other girl. (SORRY ) </div><div> then we walked to the toilets so i can wash my shoes. aww they followed me all the way.</div><div>then again i guess its to stop me going ouch ouch ouch and complaining lols. </div><div>okay when we were at the toilets . i walked round the back to the tap. there was a cute cat in the way. white with black around one ear to eye. so cute. Even if i was allergic to the cats. i was scratching its ears... then its head.. then its neck.. it liked me cuz it was rubbing its self round my legs so i crouched to pat it more. </div><div>then .. the cat crawled up onto my lap.. the girls were laughing and i was panicking. i was like.. arh help me</div><div>so i was leaning against the wall with a cat on my lap.. it was very uncomfortable so i was starting to fall on to the floor slowly lols.</div><div> </div><div>then it was almost comical as i soon was lying on the floor with a cat on my stomach.. sleeping..</div><div>i was there for like 10 mins talking to the girls. telling them to get it off me but hui ning was too scared and the other guy dinna wanna go near the cat.. so i tried to push the cat off me.. it bit me .. ouch. swelled later, ( im allergic remember ) then i just stood up .. washed my feet. put on my shoes.. and kicked the cat. lols. just a simple nudge..! ^^ bye now<br /></div><div></div></div></div></div></div></div></div></div><div style="clear:both; padding-bottom:0.25em"></div></font><br> <div align="left"><b><center>12/10/2008 10:01:00 PM</b></center> </div></font> <p> </center> </div> </div> <SCRIPT language="JavaScript1.2"> /* Roaming Cursor script (By Kurt at kurt.grigg@virgin.net) Modified and permission granted to Dynamic Drive to feature script in archive For full source, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com */ //specify path to cursor image var cursorpath="Boooo.. im a floating text! fear me!" if (document.layers) {document.write("<LAYER NAME='PoInTeRs' LEFT=10 TOP=10><img src='"+cursorpath+"' width=17 height=22></LAYER>")} else if (document.all){document.write("<div id='pOiNtErS' style='position:absolute;top:10px;left:10px;width:17px;height:22px;z-index:50'><img src='"+cursorpath+"' width=17 height=22></div>")} count=-1; move=1; function Curve(){ abc=new Array(0,1,1,1,2,3,4,0,6,-1,-1,-1,-2,-3,-4,0,-6) for (i=0; i < abc.length; i++) {var C=Math.round(Math.random()*[i])} howbend=abc[C]; setTimeout('Curve()',1900); return howbend; } ypos=10; xpos=10; degree = 60; function MoveRandom(){ PathBend=degree+=howbend;//ok! y = 4*Math.sin(PathBend*Math.PI/180); x = 6*Math.cos(PathBend*Math.PI/180); if (document.layers){ ypos+=y; xpos+=x; document.PoInTeRs.top=ypos+window.pageYOffset; document.PoInTeRs.left=xpos+window.pageXOffset; } else if (document.all){ ypos+=y; xpos+=x; document.all.pOiNtErS.style.top=ypos+document.body.scrollTop; document.all.pOiNtErS.style.left=xpos+document.body.scrollLeft; } T=setTimeout('MoveRandom()',50); } function edges(){ if (document.layers){ if (document.PoInTeRs.left >= window.innerWidth-40+window.pageXOffset)degree=Math.round(Math.random()*45+157.5); if (document.PoInTeRs.top >= window.innerHeight-30+window.pageYOffset)degree=Math.round(Math.random()*45-112.5); if (document.PoInTeRs.top <= 2+window.pageYOffset) degree = Math.round(Math.random()*45+67.5);//OK! if (document.PoInTeRs.left <= 2+window.pageXOffset) degree = Math.round(Math.random()*45-22.5);//OK! } else if (document.all) { if (document.all.pOiNtErS.style.pixelLeft >= document.body.offsetWidth-45+document.body.scrollLeft)degree=Math.round(Math.random()*45+157.5); if (document.all.pOiNtErS.style.pixelTop >= document.body.offsetHeight-35+document.body.scrollTop)degree=Math.round(Math.random()*45-112.5); if (document.all.pOiNtErS.style.pixelTop <= 2+document.body.scrollTop) degree = Math.round(Math.random()*45+67.5);//OK! if (document.all.pOiNtErS.style.pixelLeft <= 2+document.body.scrollLeft) degree = Math.round(Math.random()*45-22.5);//OK! } setTimeout('edges()',100); } function starteffect(){ Curve(); MoveRandom();// onUnload="opener.gO()" edges(); } if (document.all||document.layers) window.onload=starteffect </script> <style type="text/css"> /* Circle Text Styles */ #outerCircleText { /* Optional - DO NOT SET FONT-SIZE HERE, SET IT IN THE SCRIPT */ font-style: italic; font-weight: bold; font-family: 'Kristen ITC' , verdana, arial; color: white; /* End Optional */ /* Start Required - Do Not Edit */ position: absolute;top: 0;left: 0;z-index: 3000;cursor: default;} #outerCircleText div {position: relative;} #outerCircleText div div {position: absolute;top: 0;left: 0;text-align: center;} /* End Required */ /* End Circle Text Styles */ </style> <script type="text/javascript"> /* Circling text trail- Tim Tilton Website: http://www.tempermedia.com/ Visit: http://www.dynamicdrive.com/ for Original Source and tons of scripts Modified Here for more flexibility and modern browser support Modifications as first seen in http://www.dynamicdrive.com/forums/ username:jscheuer1 - This notice must remain for legal use */ ;(function(){ // Your message here (QUOTED STRING) var msg = "tag tag tag tag tag tag" /* THE REST OF THE EDITABLE VALUES BELOW ARE ALL UNQUOTED NUMBERS */ // Set font's style size for calculating dimensions // Set to number of desired pixels font size (decimal and negative numbers not allowed) var size = 12; // Set both to 1 for plain circle, set one of them to 2 for oval // Other numbers & decimals can have interesting effects, keep these low (0 to 3) var circleY = 0.75; var circleX = 2; // The larger this divisor, the smaller the spaces between letters // (decimals allowed, not negative numbers) var letter_spacing = 5; // The larger this multiplier, the bigger the circle/oval // (decimals allowed, not negative numbers, some rounding is applied) var diameter = 10; // Rotation speed, set it negative if you want it to spin clockwise (decimals allowed) var rotation = 0.4; // This is not the rotation speed, its the reaction speed, keep low! // Set this to 1 or a decimal less than one (decimals allowed, not negative numbers) var speed = 0.3; ////////////////////// Stop Editing ////////////////////// if (!window.addEventListener && !window.attachEvent || !document.createElement) return; msg = msg.split(''); var n = msg.length - 1, a = Math.round(size * diameter * 0.208333), currStep = 20, ymouse = a * circleY + 20, xmouse = a * circleX + 20, y = [], x = [], Y = [], X = [], o = document.createElement('div'), oi = document.createElement('div'), b = document.compatMode && document.compatMode != "BackCompat"? document.documentElement : document.body, mouse = function(e){ e = e || window.event; ymouse = !isNaN(e.pageY)? e.pageY : e.clientY; // y-position xmouse = !isNaN(e.pageX)? e.pageX : e.clientX; // x-position }, makecircle = function(){ // rotation/positioning if(init.nopy){ o.style.top = (b || document.body).scrollTop + 'px'; o.style.left = (b || document.body).scrollLeft + 'px'; }; currStep -= rotation; for (var d, i = n; i > -1; --i){ // makes the circle d = document.getElementById('iemsg' + i).style; d.top = Math.round(y[i] + a * Math.sin((currStep + i) / letter_spacing) * circleY - 15) + 'px'; d.left = Math.round(x[i] + a * Math.cos((currStep + i) / letter_spacing) * circleX) + 'px'; }; }, drag = function(){ // makes the resistance y[0] = Y[0] += (ymouse - Y[0]) * speed; x[0] = X[0] += (xmouse - 20 - X[0]) * speed; for (var i = n; i > 0; --i){ y[i] = Y[i] += (y[i-1] - Y[i]) * speed; x[i] = X[i] += (x[i-1] - X[i]) * speed; }; makecircle(); }, init = function(){ // appends message divs, & sets initial values for positioning arrays if(!isNaN(window.pageYOffset)){ ymouse += window.pageYOffset; xmouse += window.pageXOffset; } else init.nopy = true; for (var d, i = n; i > -1; --i){ d = document.createElement('div'); d.id = 'iemsg' + i; d.style.height = d.style.width = a + 'px'; d.appendChild(document.createTextNode(msg[i])); oi.appendChild(d); y[i] = x[i] = Y[i] = X[i] = 0; }; o.appendChild(oi); document.body.appendChild(o); setInterval(drag, 25); }, ascroll = function(){ ymouse += window.pageYOffset; xmouse += window.pageXOffset; window.removeEventListener('scroll', ascroll, false); }; o.id = 'outerCircleText'; o.style.fontSize = size + 'px'; if (window.addEventListener){ window.addEventListener('load', init, false); document.addEventListener('mouseover', mouse, false); document.addEventListener('mousemove', mouse, false); if (/Apple/.test(navigator.vendor)) window.addEventListener('scroll', ascroll, false); } else if (window.attachEvent){ window.attachEvent('onload', init); document.attachEvent('onmousemove', mouse); }; })(); </script> <style>body{cursor:crosshair</style></body></html>