resolucion_old=995
function cambio_res()
{
// Guardamos la resolución actual
resolucion = document.body.clientWidth;

	// Si la resolución (en ancho) de pantalla es menor o igual a 800 ejecutamos esta sentencia 
	if ((resolucion <= 994)&&(resolucion_old > 994))
	{
		// Cargamos la hoja de estilo correspondiente a la resolución de pantalla utilizada
		if (document.getElementById('hojaestilo'))
		{
		enlace = document.getElementById('hojaestilo').href;
		enlace2 = enlace.replace(/estils/, "estils_800");
		document.getElementById('hojaestilo').href = enlace2;
		}
		if (document.getElementById('hojaestilo_home'))
		{
		enlace_home = document.getElementById('hojaestilo_home').href;
		enlace_home2 = enlace_home.replace(/estils/, "estils_800");
		document.getElementById('hojaestilo_home').href = enlace_home2;
		}
		if (document.getElementById('hojaestilo_arees'))
		{
		enlace_arees = document.getElementById('hojaestilo_arees').href;
		enlace_arees2 = enlace_arees.replace(/estils/, "estils_800");
		document.getElementById('hojaestilo_arees').href = enlace_arees2;
		}
		if (document.getElementById('hojaestilo_actors'))
		{
		enlace_actors = document.getElementById('hojaestilo_actors').href;
		enlace_actors2 = enlace_actors.replace(/estils/, "estils_800");
		document.getElementById('hojaestilo_actors').href = enlace_actors2;
		}	
		resolucion_old = resolucion;
	}
	// Si la resolución (en ancho) de pantalla es igual o mayor a 800 ejecutamos esta sentencia 
	if ((resolucion > 994)&&(resolucion_old <= 994))
	{
		// Cargamos la hoja de estilo correspondiente a la resolución de pantalla utilizada
		if (document.getElementById('hojaestilo'))
		{
		enlace = document.getElementById('hojaestilo').href;
		enlace2 = enlace.replace(/estils_800/, "estils");
		document.getElementById('hojaestilo').href = enlace2;
		}
		if (document.getElementById('hojaestilo_home'))
		{
		enlace_home = document.getElementById('hojaestilo_home').href;
		enlace_home2 = enlace_home.replace(/estils_800/, "estils");
		document.getElementById('hojaestilo_home').href = enlace_home2;
		}
		if (document.getElementById('hojaestilo_arees'))
		{
		enlace_arees = document.getElementById('hojaestilo_arees').href;
		enlace_arees2 = enlace_arees.replace(/estils_800/, "estils");
		document.getElementById('hojaestilo_arees').href = enlace_arees2;
		}
		if (document.getElementById('hojaestilo_actors'))
		{
		enlace_actors = document.getElementById('hojaestilo_actors').href;
		enlace_actors2 = enlace_actors.replace(/estils_800/, "estils");
		document.getElementById('hojaestilo_actors').href = enlace_actors2;
		}
		resolucion_old = resolucion;
	}


}
