function roll_img(imagen)
			{
			if (document.getElementById('imghome'))	document.getElementById('imghome').style.display="none";
			if (document.getElementById('imgproductos'))	document.getElementById('imgproductos').style.display="none";
			if (document.getElementById('imgexperiencia'))  document.getElementById('imgexperiencia').style.display="none";
			if (document.getElementById('imgcalidad'))  document.getElementById('imgcalidad').style.display="none";
			if (document.getElementById('imgcontacto'))  document.getElementById('imgcontacto').style.display="none";
			if (document.getElementById(imagen))  document.getElementById(imagen).style.display="block";
			}
			
			
function roll_imagen_form()
			{
			if (document.body.id =='bdindex') roll_img('imghome');
			if (document.body.id =='bdproductos') roll_img('imgproductos');
			if (document.body.id =='bdexperiencia') roll_img('imgexperiencia');
			if (document.body.id =='bdcalidad') roll_img('imgcalidad');
			if (document.body.id =='bdcontacto') roll_img('imgcontacto');
			}