function ready(f){
var a = ready,
b = navigator.userAgent,
d = document,
w = window,
c = "ready",
e = "addEventListener",
o = "opera",
r = "readyState",
s = "<scr".concat("ipt defer src='//:' on", r, "change='if(this.", r, "==\"complete\"){this.parentNode.removeChild(this);", c, ".", c, "()}'></scr", "ipt>");
a[c] = (function(o) {
return function() {
a[c] = function() {};
for (a = arguments.callee; ! a.done; a.done = 1) f(o ? o() : o)
}
})(a[c]);
if (d[e]) d[e]("DOMContentLoaded", a[c], false);
if (/WebKit|Khtml/i.test(b) || (w[o] && parseInt(w[o].version()) < 9))(function() { / loaded | complete / .test(d[r]) ? a[c]() : setTimeout(arguments.callee, 1)
})();
else if (/MSIE/i.test(b)) d.write(s);
}

function $(c) {	return document.getElementById(c); }

function hide(obj){ 
{obj.style.display = 'none';}
return obj;}

function show(obj){
{obj.style.display = 'block';}
return obj;}
	
function os()
{
	if (navigator.appVersion.indexOf("Win")!=-1) OSName='w';
	if (navigator.appVersion.indexOf("Mac")!=-1) OSName='m';
	if (navigator.appVersion.indexOf("X11")!=-1) OSName='l';
	if (navigator.appVersion.indexOf("Linux")!=-1) OSName='l';
	return OSName;
}

function fc(i,c,f){	
	$(i).style.color = '#'+c+c;
	$(i).style.backgroundColor = '#'+f+f;
}

ready(function (){
	// Menu
	$('c').onmouseover=function(){show($('mn'));fc('c','888','eee');};
	$('mn').onmouseover=function(){show($('mn'));fc('c','888','eee');};
	$('c').onmouseout=function(){hide($('mn'));fc('c','888','444');};
	$('mn').onmouseout=function(){hide($('mn'));fc('c','888','444');};
	//Usuario
	$('user').value='Tu e-mail';
	$('user').onclick =function(){$('user').value='';};
	
});

