// JavaScript Document
function cambia1(){
	document.getElementById('inicio').style.fontSize = '22px';
	document.getElementById('inicio').style.color = 'yellow';
	document.getElementById('imagen_balon1').style.visibility = 'visible';
	document.getElementById('imagen_balon2').style.visibility = 'visible';
}

function cambia2(){
	document.getElementById('inicio').style.fontSize = '20px';
	document.getElementById('inicio').style.color = '#FFF';
	document.getElementById('imagen_balon1').style.visibility = 'hidden';
	document.getElementById('imagen_balon2').style.visibility = 'hidden';
}
