// ==UserScript==
// @name            Enchilalo!
// @namespace       Http://masio.com.mx
// @include         *
// @exclude         http://www.enchilame.com/*
// @description		Barra para enchilar :)
// ==/UserScript==

/*
Este script te aņada un vinculo en la parte superior derecha de la pantalla para todas las paginas
Este link te llevara a la pagina de enviar historia con el link ya lleno.

Autor: Luis Zaldivar
Sitio: Http://www.masio.com.mx
Version: 0.1

No remuevas este anuncio. Gracias :)

*/


window.ench_kot = function () {
	if(window.top.location.href != window.location.href)
		return;
	ench_this = window.location.href;
	ench_url = "http://www.enchilame.com/submit.php?url="+ench_this;
	d = document.createElement('span');
	d.id = 'enchilalo';
	d.innerHTML = "<a href='"+ench_url+"'> <img border=0 src='http://masio.com.mx/scripts/enchilame.png' /><br />Enchilalo </a>";

	d.style.position = 'absolute';
	d.style.top = ( window.scrollY )+ "px";	
	d.style.right = 0;
	d.style.width = 50;
	d.style.fontSize = '10px';
	d.style.fontFamily = 'Verdana, Tahoma, Arial';
	d.style.textAlign = 'center';
	
	document.body.appendChild(d);
	
}


window.ench_keepOnTop = function(event){
	var nv = document.getElementById("enchilalo");
	event.preventDefault();
	if(nv.style.top != window.scrollY){
		nv.style.top = (window.scrollY)+"px";	
	}
}


window.addEventListener('load', ench_kot, false); 
window.addEventListener('scroll', ench_keepOnTop, false); 

