Superplankton on Blog!: Sekolah Kita! . */ var dom = (document.getElementById) ? true : false; var ns5 = (!document.all && dom || window.opera) ? true: false; var ie5 = ((navigator.userAgent.indexOf("MSIE")>-1) && dom) ? true : false; var ie4 = (document.all && !dom) ? true : false; var nodyn = (!ns5 && !ie4 && !ie5 && !dom) ? true : false; var origWidth, origHeight; // avoid error of passing event object in older browsers if (nodyn) { event = "nope" } /////////////////////// CUSTOMIZE HERE //////////////////// // settings for tooltip // Do you want tip to move when mouse moves over link? var tipFollowMouse= true; // Be sure to set tipWidth wide enough for widest image var tipWidth= 160; var offX= 20; // how far from mouse to show tip var offY= 12; var tipFontFamily= "Verdana, arial, helvetica, sans-serif"; var tipFontSize= "8pt"; // set default text color and background color for tooltip here // individual tooltips can have their own (set in messages arrays) // but don't have to var tipFontColor= "#000000"; var tipBgColor= "#transparent"; var tipBorderColor= "#000000"; var tipBorderWidth= 3; var tipBorderStyle= "ridge"; var tipPadding= 4; // tooltip content goes here (image, description, optional bgColor, optional textcolor) var messages = new Array(); // multi-dimensional arrays containing: // image and text for tooltip // optional: bgColor and color to be sent to tooltip messages[0] = new Array('http://mega.xtremenitro.org/tuzki/smiley/senam_pagi4.gif','
Kembali ke portal. Jelajahi lebih banyak lagi! Oh iyah. di sini juga ada galeri foto saya. So, please click.
','white','black'); messages[1] = new Array('http://mega.xtremenitro.org/tuzki/smiley/sundul_up.gif','Terbang ke halaman awal blog ini. Baca cerita lebih banyak lagi!','white','black'); messages[2] = new Array('http://mega.xtremenitro.org/tuzki/smiley/jagon.gif','Kalau mau baca lebih banyak tentang adminnya yang luar biasa cakep ini, klik saja di sini!','white','black'); messages[3] = new Array('http://mega.xtremenitro.org/tuzki/smiley/petir.gif','Ini blog saya yang kedua. Isinya tulisan-tulisan pelampiasan indrawi (Ngomong apa sih saya?!). Isinya ada puisi dan cerpen yang mungkin menarik untuk dimakan','white','black'); messages[4] = new Array('http://photos-f.ak.fbcdn.net/hphotos-ak-snc1/hs104.snc1/4580_1079903402641_1377965138_30233829_906438_s.jpg','Muka buku. Temukan saya di facebook. Kalau mau PDKT lewat sini juga bisa!','white','black'); messages[5] = new Array('http://mega.xtremenitro.org/tuzki/smiley/bacok.gif','Ngapain atuh nunggu-nunggu lagi. Daripada cuman jadi pengagum rahasia. Update-an Blog akan dikirim Langsung ke Dashboardmu! Pilih mana?! Nge-Follow atau dibacok?!','white','black'); messages[6] = new Array('http://mega.xtremenitro.org/tuzki/smiley/ngantuk.gif','Balik ke Dasbor. Bercengkrama dengan postingan lagi. Argghh!','white','black'); messages[7] = new Array('http://mega.xtremenitro.org/tuzki/smiley/aduh.gif','
Kalau ngak tau bahasa Inggris, ini berarti Sign Out','white','black'); //////////////////// END OF CUSTOMIZATION AREA /////////////////// // preload images that are to appear in tooltip // from arrays above if (document.images) { var theImgs = new Array(); for (var i=0; i'; var endStr = ''; //////////////////////////////////////////////////////////// // initTip - initialization for tooltip. // Global variables for tooltip. // Set styles // Set up mousemove capture if tipFollowMouse set true. //////////////////////////////////////////////////////////// var tooltip, tipcss; function initTip() { if (nodyn) return; tooltip = (ie4)? document.all['tipDiv']: (ie5||ns5)? document.getElementById('tipDiv'): null; tipcss = tooltip.style; if (ie4||ie5||ns5) { // ns4 would lose all this on rewrites tipcss.width = tipWidth+"px"; tipcss.fontFamily = tipFontFamily; tipcss.fontSize = tipFontSize; tipcss.color = tipFontColor; tipcss.backgroundColor = tipBgColor; tipcss.borderColor = tipBorderColor; tipcss.borderWidth = tipBorderWidth+"px"; tipcss.padding = tipPadding+"px"; tipcss.borderStyle = tipBorderStyle; } if (tooltip&&tipFollowMouse) { document.onmousemove = trackMouse; } } window.onload = initTip; ///////////////////////////////////////////////// // doTooltip function // Assembles content for tooltip and writes // it to tipDiv ///////////////////////////////////////////////// var t1,t2; // for setTimeouts var tipOn = false; // check if over tooltip link function doTooltip(evt,num) { if (!tooltip) return; if (t1) clearTimeout(t1); if (t2) clearTimeout(t2); tipOn = true; // set colors if included in messages array if (messages[num][2]) var curBgColor = messages[num][2]; else curBgColor = tipBgColor; if (messages[num][3]) var curFontColor = messages[num][3]; else curFontColor = tipFontColor; if (ie4||ie5||ns5) { var tip = startStr + messages[num][0] + midStr + '' + messages[num][1] + '' + endStr; tipcss.backgroundColor = curBgColor; tooltip.innerHTML = tip; } if (!tipFollowMouse) positionTip(evt); else t1=setTimeout("tipcss.visibility='visible'",100); } var mouseX, mouseY; function trackMouse(evt) { standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body //create reference to common "body" across doctypes mouseX = (ns5)? evt.pageX: window.event.clientX + standardbody.scrollLeft; mouseY = (ns5)? evt.pageY: window.event.clientY + standardbody.scrollTop; if (tipOn) positionTip(evt); } ///////////////////////////////////////////////////////////// // positionTip function // If tipFollowMouse set false, so trackMouse function // not being used, get position of mouseover event. // Calculations use mouseover event position, // offset amounts and tooltip width to position // tooltip within window. ///////////////////////////////////////////////////////////// function positionTip(evt) { if (!tipFollowMouse) { standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body mouseX = (ns5)? evt.pageX: window.event.clientX + standardbody.scrollLeft; mouseY = (ns5)? evt.pageY: window.event.clientY + standardbody.scrollTop; } // tooltip width and height var tpWd = (ie4||ie5)? tooltip.clientWidth: tooltip.offsetWidth; var tpHt = (ie4||ie5)? tooltip.clientHeight: tooltip.offsetHeight; // document area in view (subtract scrollbar width for ns) var winWd = (ns5)? window.innerWidth-20+window.pageXOffset: standardbody.clientWidth+standardbody.scrollLeft; var winHt = (ns5)? window.innerHeight-20+window.pageYOffset: standardbody.clientHeight+standardbody.scrollTop; // check mouse position against tip and window dimensions // and position the tooltip if ((mouseX+offX+tpWd)>winWd) tipcss.left = mouseX-(tpWd+offX)+"px"; else tipcss.left = mouseX+offX+"px"; if ((mouseY+offY+tpHt)>winHt) tipcss.top = winHt-(tpHt+offY)+"px"; else tipcss.top = mouseY+offY+"px"; if (!tipFollowMouse) t1=setTimeout("tipcss.visibility='visible'",100); } function hideTip() { if (!tooltip) return; t2=setTimeout("tipcss.visibility='hidden'",100); tipOn = false; } document.write('')
Salam Admin!
Ikuti Blog Ini !
Daripada cuman jadi pengagum rahasia. Update-an Blog akan dikirim Langsung ke Dashboardmu!
Lihat Profil Lengkap Ku
Tanyakan Apa Saja!
C-BOX (Baca: Ceboks)
Admin


Kamu pengunjung ke:
Sekolah Kita!
Ngebaca lembaran demi lembaran 5cm bikin gua ingat sama SMA gua. SMA Negeri 5 Makassar dengan segala ketololan, keajaiban, ketidakbiasaan, dan keanehan-keanehan lainnya. Gua ingat di hari pertama MOS di gugus 10. Gua ketemu Egha (yang lebih sering kupanggil Tya), yang nantinya bakal jadi orang yang sangat gua kagumi. Gua juga ketemu Ince dan belum cukup tiga hari berkenalan, langsung menceritakan kekagumannya (bahasa anak mudanya sih jatuh cinta) sama seorang cowok.



Satu lagi postingan keren oleh Andis Mahmud @ 03:38   3 Komentar
Buka/Tutup Komentar
3 Comments:
  • At 25 Januari 2010 18:33, Anonymous Anonim said…

    hi

    can anyone help me
    i have tried for over a week now to get a loan,i have very bad credit history mainly due to a failed marrage ,i have had all the usual ,wh loans,advantage loans ,yes loans ,get in touch and promise a [url=http://www.usainstantpayday.com]bad credit loans[/url] on paying the brokerage fee,i am reluctant due to reviews on the net and i have been stung before by a company called wentorth finance ,and never got the loan of the 50 pound fee back,
    i have had an offer from flm but need a gaurantor which isnt really an option either .
    i wondered if anyone had any loan companys that considered bad credit ,but loaned direct without these numerous sites with different alias but mainly did same thing pay us and we will get u loan (maybe)senario
    has anyone also heard of a company called fresh loans they have they sent me details out but the may be a charge but not always ,i suspect she didnt want to tell me there was a charge

    thanks
    Ruigegittefut

     
  • At 28 Januari 2010 05:39, Anonymous Anonim said…

    Hola my first post whoopee...[url=http://www.designsonline.co.uk/].[/url]

     
  • At 23 Februari 2010 18:52, Anonymous Anonim said…

    [URL=http://www.wallpaperhungama.in/details.php?image_id=14627][IMG]http://www.wallpaperhungama.in/data/thumbnails/22/Shriya Saran-145.jpg[/IMG][/URL]

    [URL=http://www.wallpaperhungama.in/details.php?image_id=14628][IMG]http://www.wallpaperhungama.in/data/thumbnails/22/Shriya Saran-146.jpg[/IMG][/URL]

    [URL=http://www.wallpaperhungama.in/details.php?image_id=14630][IMG]http://www.wallpaperhungama.in/data/thumbnails/22/Shriya Saran-148.jpg[/IMG][/URL]

    [url=http://www.wallpaperhungama.in/cat-Shriya-Saran-22.htm]Shriya Saran Wallpapers[/url]

    Photo gallery at WallpaperHungama.in is dedicated to Shriya Saran Pictures. Click on the thumbnails for enlarged Shriya Saran pictures, personal photographs and exclusive photos. Also check out other Pictures Gallery for High quality and High Resolution image scans, movie captures, movie promos, wallpapers, hollywood & bollywood pictures, photos of actresses and celebrities.

     
Poskan Komentar
<< Home
 
Daftar Isi
Teman Blogging
Kosmik Blogger
Arsip
Sponsor