More Posts?

Now that I have a nifty little bookmarklet maybe I'll start posting a little more then i have in the past. LOL

var z = [];
z[0] =document.getElementsByTagName('p');
z[1] = document.getElementsByTagName('ul');
z[1] = document.getElementsByTagName('ol');
for(var h = 0; h < z.length; h++){
	var a = z[h];
	for(var i = 0; i < a.length; i++){
		var j=a[i].style.border;
		a[i].onmouseover = function () {
			this.style.border = "3px solid #FF0000";
			this.style.cursor = "crosshair";
		}
		a[i].onmouseout = function () {
			this.style.border = j;
			this.style.cursor = "auto";
		}
		a[i].onclick = function () {
			var b = escape( document.title );
			var c = escape( this.innerHTML+'\n\n'+location.href );
			location.href = 'http://scotepi.net/drupal/node/add/story?edit[title]='+b+'&edit[body_field][body]='+c;
		}
	}
}