function cambiarEstilosRosa(id){
	document.getElementById('cuadro_portada_cat_1').className='cuadro_portada_cat_rosa';
	document.getElementById('enlace_cat_1').className='txt_rosa2';
}

function deshacerEstilosRosa(id){
	document.getElementById('cuadro_portada_cat_1').className='cuadro_portada_cat';
	document.getElementById('enlace_cat_1').className='txt_rosa';
}

function cambiarEstilosAmarillo(id){
	document.getElementById('cuadro_portada_cat_2').className='cuadro_portada_cat_amarillo';
	document.getElementById('enlace_cat_2').className='txt_amarillo2';
}

function deshacerEstilosAmarillo(id){
	document.getElementById('cuadro_portada_cat_2').className='cuadro_portada_cat';
	document.getElementById('enlace_cat_2').className='txt_amarillo';
}

function cambiarEstilosAzul(id){
	document.getElementById('cuadro_portada_cat_3').className='cuadro_portada_cat_azul';
	document.getElementById('enlace_cat_3').className='txt_azul2';
}

function deshacerEstilosAzul(id){
	document.getElementById('cuadro_portada_cat_3').className='cuadro_portada_cat';
	document.getElementById('enlace_cat_3').className='txt_azul';
}

function cambiarEstilosVerde(id){
	document.getElementById('cuadro_portada_cat_4').className='cuadro_portada_cat_verde';
	document.getElementById('enlace_cat_4').className='txt_verde2';
}

function deshacerEstilosVerde(id){
	document.getElementById('cuadro_portada_cat_4').className='cuadro_portada_cat';
	document.getElementById('enlace_cat_4').className='txt_verde';
}

function cambiarEstilosNoticia(id){
	document.getElementById('nombre_noticia_'+id).className='nombre_noticia_over';
	document.getElementById('imagen_noticia_'+id).className='imagen_noticia_over';
}

function deshacerEstilosNoticia(id){
	document.getElementById('nombre_noticia_'+id).className='nombre_noticia';
	document.getElementById('imagen_noticia_'+id).className='imagen_noticia';
}

function cambiarEstilosVideo(id){
	document.getElementById('cuadro_portada_video_'+id).className='cuadro_portada_video_over';
	document.getElementById('imagen_video_portada_'+id).className='imagen_video_portada_over';
	document.getElementById('enlace_video_'+id).className='txt_blanco';
}

function deshacerEstilosVideo(id){
	document.getElementById('cuadro_portada_video_'+id).className='cuadro_portada_video';
	document.getElementById('imagen_video_portada_'+id).className='imagen_video_portada';
	document.getElementById('enlace_video_'+id).className='txt_verde';
}

