// ==UserScript==
// @name         TwitterAddSSL
// @namespace    http://zafiel.wingall.com/archives/2010012512231106.php
// @description  Add Link to Twitter SSL Login Page
// @include      http://twitter.com/login
// ==/UserScript==

(function() {

	var a_txt = document.createTextNode(">>Use SSL Login Page");
	var a_elem = document.createElement("a");
	var br_elem = document.createElement("br");
	a_elem.setAttribute("href", "https://twitter.com/login");
	a_elem.style.color = "red";
	a_elem.style.fontWeight = "bold";
	a_elem.appendChild(a_txt);

	var button = document.getElementById("signin_submit");
	button.style.marginBottom = "1em";
	var par = button.parentNode;
	par.appendChild(br_elem);
	par.appendChild(a_elem);

})();


