var usertyped = ""; 

function mecSufre(key) {
var keychar = String.fromCharCode(key.charCode);
usertyped += keychar;
if (usertyped.indexOf("mec")!=-1) {
var splash = "<img id=\"eek\" style=\"width: 450px; height: 512px; ";
		   splash += "display: block; position: fixed;";
		   splash += "top: 50%; left: 50%; margin: -256px 0 0 -225px;\"";
		   splash += " src=\"http://www.epuel.org.ar/2009/wp-content/themes/epuel-2009/js/mec.png\" alt=\"La pesadilla de MEC!\" />";
$("body").append(splash);
$("#eek").click( function () {
$(this).fadeOut()
});
usertyped = "";
}
if (key.keyCode==27) {
$("#eek").fadeOut();
}
}



$(document).ready(function() {
$("#cabecera").hide().fadeIn(2500);

$(document).keypress(function (key) {
mecSufre(key);
});
});
