function navOver(e) {
	if (e == 'home') { document.getElementById("navhelp").innerHTML = "<h1>HOME</h1><p>Novedades, ultimas noticias, ultimos trabajos</p>"; }
	if (e == 'servicios') { document.getElementById("navhelp").innerHTML = "<h1>SERVICIOS</h1><p>Dise&ntilde;o web, desarrollo, sistemas</p>"; }
	if (e == 'trabajos') { document.getElementById("navhelp").innerHTML = "<h1>TRABAJOS</h1><p>Ultimos trabajos realizados</p>"; }
	if (e == 'contactar') { document.getElementById("navhelp").innerHTML = "<h1>CONTACTAR</h1><p>info@sebaperez.com  |  +54 15 6257 4492</p>"; }
}
function navOut() { document.getElementById("navhelp").innerHTML = ""; }

/* Inputs forms */
function inputBorderFocus(input) {
	input.style.color="#2E2C2D";
	input.style.border="#2E2C2D 1px double";
}
function inputBorderBlur(input) {
	input.style.color="#DDDDDD";
	input.style.border="#DDDDDD 1px double";	
}
