	function cambiar_color_over(celda)
	{
		if(celda.id=="publicidadeninternet")
		{
		celda.style.background='url("imagenes/publicidadeninterneton.gif")';
		}
		if(celda.id=="hosting")
		{
		celda.style.background='url("imagenes/alojamientowebon.gif")';
		}
		if(celda.id=="tienda")
		{
		celda.style.background='url("imagenes/tiendaonlineon.gif")';
		}
		if(celda.id=="diseno")
		{
		celda.style.background='url("imagenes/disenowebon.gif")';
		}
		celda.style.cursor="POINTER";
		celda.style.cursor="HAND"
	}
	function cambiar_color_out(celda){
	if(celda.id=="publicidadeninternet")
		{
		celda.style.background='url("imagenes/publicidadeninternet.gif")';
		}
		if(celda.id=="hosting")
		{
		celda.style.background='url("imagenes/alojamientoweb.gif")';
		}
		if(celda.id=="tienda")
		{
		celda.style.background='url("imagenes/tiendaonline.gif")';
		}
		if(celda.id=="diseno")
		{
		celda.style.background='url("imagenes/disenoweb.gif")';
		}
		celda.style.cursor="POINTER";
		celda.style.cursor="HAND"
	}
	
	function cambia_color(){
		celda = document.getElementById("celda" + document.fcolor.celda.value)
		celda.style.backgroundColor=document.fcolor.micolor.value
	}