Warning: sem_get() [function.sem-get]: failed for key 0x152b: Permission denied in /home5/yeaiknit/public_html/blog/wp-content/plugins/wp-cache/wp-cache-phase2.php on line 98

Warning: Cannot modify header information - headers already sent by (output started at /home5/yeaiknit/public_html/blog/wp-content/plugins/wp-cache/wp-cache-phase2.php:98) in /home5/yeaiknit/public_html/blog/wp-content/plugins/wp-grins/wp-grins.php on line 70
function insertAfter(node, referenceNode) { referenceNode.parentNode.insertBefore(node, referenceNode.nextSibling); } function loadGrins() { var grinsDiv = document.createElement('div'); grinsDiv.id = 'wp_grins'; grinsDiv.innerHTML = '=) =( ;-) :yu: :yes: :yel: :yay: :yahoo: :xfingers: :worried: :witsend: :whistling: :wave: :waiting: :waing: :victory: :unknw: :type: :tongue: :tob: :tired: :tiphat: :timeout: :think: :tease: :talktohand: :surprised: :sunny: :stupido: :spyguy: :sooosorry: :snappy: :sleepy: :sleep: :skippinsheep: :silly: :silent: :sighing: :sickly: :shouT: :shocking: :shock: :shhhh: :sheepishness: :shame: :sh: :secret: :scare: :rolleyes: :rocks: :razz: :raisebrows: :question2: :pray: :pod: :plfft: :peace: :party: :pardon: :ooooh: :onphone: :ok: :notlistening: :nono: :neutral: :nea: :nanner: :nanner2: :nailbiting: :moneyeyes: :milove: :mailfun: :madtongue: :lurve: :love: :loser: :lol: :liar: :knitting: :kiss: :kiddingme: :hypnotized: :huggs: :hug: :hotchili: :hi: :help: :hd: :guyknit: :groovy: :grin: :good: :glasses: :giggle: :frogging: :friends: :flowers: :flowers2: :flirty: :eyeroll: :eyebrow: :dunno: :drunk: :devilish: :devil: :deadly: :daydream: :crazy: :crazy2: :cowboy: :countinsheep: :cool: :cookin: :content: :confused: :cold: :coffee: :coffee2: :cloud9: :clap: :chill: :chicken: :censored: :callme: :cake: :brokenheart: :bored: :blush: :blowbubble: :bdaycake: :batting: :bat: :bang: :attn: :angry: :angel: :alert: :ROFL: '; if ($('postdiv')) { var type = 'child'; var node = $('postdiv'); } else if (document.getElementById('postdivrich')) { var type = 'child'; var node = $('postdivrich'); } else if (document.getElementById('comment')) { var type = 'before'; var node = $('comment'); } else { return; } switch (type) { case 'child': grinsDiv.style.paddingTop = '5px'; node.appendChild(grinsDiv); break; case 'before': node.parentNode.insertBefore(grinsDiv, node); break; } } Event.observe(window, 'load', loadGrins, false); function grin(tag) { var myField; if ($('content') && $('content').type == 'textarea') { myField = document.getElementById('content'); if ($('postdivrich') && typeof tinyMCE != 'undefined' && (!$('edButtons') || $('quicktags').style.display == 'none')) { tinyMCE.execInstanceCommand('mce_editor_0', 'mceInsertContent', false, ' ' + tag + ' '); tinyMCE.selectedInstance.repaint(); return; } } else if ($('comment') && $('comment').type == 'textarea') { myField = $('comment'); } else { return false; } if (document.selection) { myField.focus(); sel = document.selection.createRange(); sel.text = ' ' + tag + ' '; myField.focus(); } else if (myField.selectionStart || myField.selectionStart == '0') { var startPos = myField.selectionStart; var endPos = myField.selectionEnd; var cursorPos = endPos; myField.value = myField.value.substring(0, startPos) + ' ' + tag + ' ' + myField.value.substring(endPos, myField.value.length); cursorPos += tag.length + 2; myField.focus(); myField.selectionStart = cursorPos; myField.selectionEnd = cursorPos; } else { myField.value += tag; myField.focus(); } }